py23: add 'zip' (alias to izip in py2) to __all__

This commit is contained in:
Cosimo Lupo 2018-06-12 17:29:10 +01:00
parent f9f06ecc10
commit c4950ecc8b
No known key found for this signature in database
GPG Key ID: 59D54DB0C9976482

View File

@ -7,7 +7,7 @@ import sys
__all__ = ['basestring', 'unicode', 'unichr', 'byteord', 'bytechr', 'BytesIO',
'StringIO', 'UnicodeIO', 'strjoin', 'bytesjoin', 'tobytes', 'tostr',
'tounicode', 'Tag', 'open', 'range', 'xrange', 'round', 'Py23Error',
'SimpleNamespace']
'SimpleNamespace', 'zip']
class Py23Error(NotImplementedError):