Searched refs:PyZipFile (Results 1 – 5 of 5) sorted by relevance
/third_party/python/Doc/library/ |
D | zipfile.rst | 64 .. class:: PyZipFile 555 PyZipFile Objects 558 The :class:`PyZipFile` constructor takes the same parameters as the 561 .. class:: PyZipFile(file, mode='r', compression=ZIP_STORED, allowZip64=True, \ 572 .. method:: PyZipFile.writepy(pathname, basename='', filterfunc=None) 577 If the *optimize* parameter to :class:`PyZipFile` was not given or ``-1``, 580 If the *optimize* parameter to :class:`PyZipFile` was ``0``, ``1`` or 604 >>> zf = PyZipFile('myprog.zip')
|
/third_party/python/Lib/test/ |
D | test_zipfile.py | 1158 with TemporaryFile() as t, zipfile.PyZipFile(t, "w") as zipfp: 1175 with TemporaryFile() as t, zipfile.PyZipFile(t, "w") as zipfp: 1191 with TemporaryFile() as t, zipfile.PyZipFile(t, "w") as zipfp: 1205 with TemporaryFile() as t, zipfile.PyZipFile(t, "w") as zipfp: 1238 zipfile.PyZipFile(t, "w", optimize=optlevel) as zipfp: 1257 with TemporaryFile() as t, zipfile.PyZipFile(t, "w") as zipfp: 1277 with TemporaryFile() as t, zipfile.PyZipFile(t, "w") as zipfp: 1289 with TemporaryFile() as t, zipfile.PyZipFile(t, "w") as zipfp: 1301 with TemporaryFile() as t, zipfile.PyZipFile(t, "w") as zipfp: 1323 with TemporaryFile() as t, zipfile.PyZipFile(t, "w") as zipfp:
|
/third_party/python/Lib/ |
D | zipfile.py | 1933 class PyZipFile(ZipFile): class
|
/third_party/python/Doc/whatsnew/ |
D | 3.4.rst | 1785 The :meth:`~zipfile.PyZipFile.writepy` method of the 1786 :class:`~zipfile.PyZipFile` class has a new *filterfunc* option that can be
|
/third_party/python/Misc/ |
D | HISTORY | 3565 - Issue #19274: Add a filterfunc parameter to PyZipFile.writepy. 5414 - Issue #12004: Fix an internal error in PyZipFile when writing an invalid 11245 py_compile, compileall and zipfile.PyZipFile.
|