commit | 5c01678174276449070dabc467823d7a55f1cfab | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Tue May 01 09:00:59 2012 +0200 |
committer | Georg Brandl <georg@python.org> | Tue May 01 09:00:59 2012 +0200 |
tree | f6607eb9c7c9ee8beff653a5f2a47145390d8ed5 | |
parent | 2a2ce328fb32424e9ddef853211d5d877eb3d5b5 [diff] [blame] |
Add missing comma in __all__ list.
diff --git a/Lib/zipfile.py b/Lib/zipfile.py index fa6a433..f5564da 100644 --- a/Lib/zipfile.py +++ b/Lib/zipfile.py
@@ -28,7 +28,7 @@ bz2 = None __all__ = ["BadZipFile", "BadZipfile", "error", - "ZIP_STORED", "ZIP_DEFLATED", "ZIP_BZIP2" + "ZIP_STORED", "ZIP_DEFLATED", "ZIP_BZIP2", "is_zipfile", "ZipInfo", "ZipFile", "PyZipFile", "LargeZipFile"] class BadZipFile(Exception):