Skip to content

Commit 8ce7ead

Browse files
committed
Remove builtins from globals (artifact of previous refactor)
1 parent 352afe0 commit 8ce7ead

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

sortedcontainers/sortedlist.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,11 @@
3333
if hexversion < 0x03000000:
3434
from itertools import imap as map # pylint: disable=redefined-builtin
3535
from itertools import izip as zip # pylint: disable=redefined-builtin
36-
reduce = reduce # pylint: disable=undefined-variable
3736
try:
3837
from thread import get_ident
3938
except ImportError:
4039
from dummy_thread import get_ident
4140
else:
42-
map = map
43-
zip = zip
4441
from functools import reduce
4542
try:
4643
from _thread import get_ident

0 commit comments

Comments
 (0)