mirror of
https://github.com/python/cpython.git
synced 2025-12-05 00:52:25 +00:00
Add missing comma in __all__ list.
This commit is contained in:
parent
2a2ce328fb
commit
5c01678174
1 changed files with 1 additions and 1 deletions
|
|
@ -28,7 +28,7 @@ except ImportError:
|
||||||
bz2 = None
|
bz2 = None
|
||||||
|
|
||||||
__all__ = ["BadZipFile", "BadZipfile", "error",
|
__all__ = ["BadZipFile", "BadZipfile", "error",
|
||||||
"ZIP_STORED", "ZIP_DEFLATED", "ZIP_BZIP2"
|
"ZIP_STORED", "ZIP_DEFLATED", "ZIP_BZIP2",
|
||||||
"is_zipfile", "ZipInfo", "ZipFile", "PyZipFile", "LargeZipFile"]
|
"is_zipfile", "ZipInfo", "ZipFile", "PyZipFile", "LargeZipFile"]
|
||||||
|
|
||||||
class BadZipFile(Exception):
|
class BadZipFile(Exception):
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue