diff options
author | Georg Brandl <georg@python.org> | 2012-05-01 07:00:59 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2012-05-01 07:00:59 (GMT) |
commit | 5c01678174276449070dabc467823d7a55f1cfab (patch) | |
tree | f6607eb9c7c9ee8beff653a5f2a47145390d8ed5 /Lib/zipfile.py | |
parent | 2a2ce328fb32424e9ddef853211d5d877eb3d5b5 (diff) | |
download | cpython-5c01678174276449070dabc467823d7a55f1cfab.zip cpython-5c01678174276449070dabc467823d7a55f1cfab.tar.gz cpython-5c01678174276449070dabc467823d7a55f1cfab.tar.bz2 |
Add missing comma in __all__ list.
Diffstat (limited to 'Lib/zipfile.py')
-rw-r--r-- | Lib/zipfile.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ except ImportError: 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): |