Skip to content

Commit ae42011

Browse files
committed
Update __all__ to reflect symbols in future/utils/__init__.py (issue #73)
1 parent 62c1627 commit ae42011

File tree

1 file changed

+13
-11
lines changed

1 file changed

+13
-11
lines changed

future/utils/__init__.py

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -619,16 +619,18 @@ def ensure_new_type(obj):
619619
return obj
620620

621621

622-
__all__ = ['PY3', 'PY2', 'PYPY', 'python_2_unicode_compatible',
623-
'as_native_str',
624-
'with_metaclass', 'bchr', 'bstr', 'bord',
625-
'tobytes', 'str_to_native_bytes', 'bytes_to_native_str',
626-
'lrange', 'lmap', 'lzip', 'lfilter',
627-
'isidentifier', 'iteritems', 'iterkeys', 'itervalues',
628-
'viewitems', 'viewkeys', 'viewvalues',
629-
'bind_method', 'getexception',
630-
'reraise', 'implements_iterator', 'get_next', 'encode_filename',
631-
'is_new_style', 'native_str', 'old_div', 'as_native_str',
632-
'listvalues', 'listitems'
622+
__all__ = ['PY2', 'PY26', 'PY3', 'PYPY',
623+
'as_native_str', 'bind_method', 'bord', 'bstr',
624+
'bytes_to_native_str', 'encode_filename', 'ensure_new_type',
625+
'exec_', 'get_next', 'getexception', 'implements_iterator',
626+
'is_new_style', 'isbytes', 'isidentifier', 'isint',
627+
'isnewbytes', 'istext', 'iteritems', 'iterkeys', 'itervalues',
628+
'lfilter', 'listitems', 'listvalues', 'lmap', 'lrange',
629+
'lzip', 'native', 'native_bytes', 'native_str',
630+
'native_str_to_bytes', 'old_div',
631+
'python_2_unicode_compatible', 'raise_',
632+
'raise_with_traceback', 'reraise', 'text_to_native_str',
633+
'tobytes', 'viewitems', 'viewkeys', 'viewvalues',
634+
'with_metaclass'
633635
]
634636

0 commit comments

Comments
 (0)