[Python-checkins] cpython: Add missing comma in __all__ list.

georg.brandl python-checkins at python.org
Tue May 1 09:00:30 CEST 2012


http://hg.python.org/cpython/rev/7bdac82c16ab
changeset:   76685:7bdac82c16ab
user:        Georg Brandl <georg at python.org>
date:        Tue May 01 09:00:59 2012 +0200
summary:
  Add missing comma in __all__ list.

files:
  Lib/zipfile.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/zipfile.py b/Lib/zipfile.py
--- 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):

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list