bpo-39830: Add zipfile.Path to __all__ (GH-19115)
This commit is contained in:
parent
bace59d8b8
commit
9a81ab107a
|
@ -37,7 +37,8 @@ except ImportError:
|
||||||
|
|
||||||
__all__ = ["BadZipFile", "BadZipfile", "error",
|
__all__ = ["BadZipFile", "BadZipfile", "error",
|
||||||
"ZIP_STORED", "ZIP_DEFLATED", "ZIP_BZIP2", "ZIP_LZMA",
|
"ZIP_STORED", "ZIP_DEFLATED", "ZIP_BZIP2", "ZIP_LZMA",
|
||||||
"is_zipfile", "ZipInfo", "ZipFile", "PyZipFile", "LargeZipFile"]
|
"is_zipfile", "ZipInfo", "ZipFile", "PyZipFile", "LargeZipFile",
|
||||||
|
"Path"]
|
||||||
|
|
||||||
class BadZipFile(Exception):
|
class BadZipFile(Exception):
|
||||||
pass
|
pass
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
Add :class:`zipfile.Path` to ``__all__`` in the :mod:`zipfile` module.
|
Loading…
Reference in New Issue