Skip to content

Commit 07b2212

Browse files
committed
Remove duplicate name from past.builtins.__all__
1 parent 2044e07 commit 07b2212

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

past/builtins/__init__.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,8 @@
6363
# Only shadow builtins on Py3; no new names
6464
__all__ = ['filter', 'map', 'range', 'reduce', 'zip',
6565
'basestring', 'dict', 'str', 'long', 'unicode',
66-
'apply', 'chr', 'cmp', 'execfile', 'intern', 'raw_input', 'reload',
67-
'unichr', 'unicode', 'xrange'
68-
# 'ascii', 'chr', 'hex', 'input', 'oct', 'open', 'unichr',
69-
# 'bytes', 'dict', 'int', 'range', 'round', 'str', 'super',
66+
'apply', 'chr', 'cmp', 'execfile', 'intern', 'raw_input',
67+
'reload', 'unichr', 'xrange'
7068
]
7169

7270
else:

0 commit comments

Comments
 (0)