mirror of
https://github.com/python/cpython.git
synced 2025-08-19 08:11:46 +00:00
Remove unused imports
This commit is contained in:
parent
43a5641c0b
commit
b36f747464
1 changed files with 3 additions and 3 deletions
|
@ -6,12 +6,12 @@ import _abcoll
|
||||||
__all__ += _abcoll.__all__
|
__all__ += _abcoll.__all__
|
||||||
|
|
||||||
from _collections import deque, defaultdict
|
from _collections import deque, defaultdict
|
||||||
from operator import itemgetter as _itemgetter, eq as _eq
|
from operator import itemgetter as _itemgetter
|
||||||
from keyword import iskeyword as _iskeyword
|
from keyword import iskeyword as _iskeyword
|
||||||
import sys as _sys
|
import sys as _sys
|
||||||
import heapq as _heapq
|
import heapq as _heapq
|
||||||
from itertools import repeat as _repeat, chain as _chain, starmap as _starmap, \
|
from itertools import repeat as _repeat, chain as _chain, starmap as _starmap
|
||||||
ifilter as _ifilter, imap as _imap
|
|
||||||
try:
|
try:
|
||||||
from thread import get_ident as _get_ident
|
from thread import get_ident as _get_ident
|
||||||
except ImportError:
|
except ImportError:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue