Home
last modified time | relevance | path

Searched refs:PyZipFile (Results 1 – 10 of 10) sorted by relevance

/external/python/cpython3/Doc/library/
Dzipfile.rst55 .. class:: PyZipFile
452 PyZipFile Objects
455 The :class:`PyZipFile` constructor takes the same parameters as the
458 .. class:: PyZipFile(file, mode='r', compression=ZIP_STORED, allowZip64=True, \
469 .. method:: PyZipFile.writepy(pathname, basename='', filterfunc=None)
474 If the *optimize* parameter to :class:`PyZipFile` was not given or ``-1``,
477 If the *optimize* parameter to :class:`PyZipFile` was ``0``, ``1`` or
501 >>> zf = PyZipFile('myprog.zip')
/external/python/cpython3/Lib/test/
Dtest_zipfile.py845 with TemporaryFile() as t, zipfile.PyZipFile(t, "w") as zipfp:
862 with TemporaryFile() as t, zipfile.PyZipFile(t, "w") as zipfp:
878 with TemporaryFile() as t, zipfile.PyZipFile(t, "w") as zipfp:
892 with TemporaryFile() as t, zipfile.PyZipFile(t, "w") as zipfp:
925 zipfile.PyZipFile(t, "w", optimize=optlevel) as zipfp:
944 with TemporaryFile() as t, zipfile.PyZipFile(t, "w") as zipfp:
964 with TemporaryFile() as t, zipfile.PyZipFile(t, "w") as zipfp:
976 with TemporaryFile() as t, zipfile.PyZipFile(t, "w") as zipfp:
988 with TemporaryFile() as t, zipfile.PyZipFile(t, "w") as zipfp:
1010 with TemporaryFile() as t, zipfile.PyZipFile(t, "w") as zipfp:
/external/python/cpython2/Doc/library/
Dzipfile.rst47 .. class:: PyZipFile
351 PyZipFile Objects
354 The :class:`PyZipFile` constructor takes the same parameters as the
359 .. method:: PyZipFile.writepy(pathname[, basename])
/external/python/cpython2/Lib/test/
Dtest_zipfile.py836 with zipfile.PyZipFile(TemporaryFile(), "w") as zipfp:
848 with zipfile.PyZipFile(TemporaryFile(), "w") as zipfp:
865 with zipfile.PyZipFile(TemporaryFile(), "w") as zipfp:
888 zipfp = zipfile.PyZipFile(TemporaryFile(), "w")
900 with zipfile.PyZipFile(TemporaryFile(), "w") as zipfp:
/external/python/cpython2/Lib/
Dzipfile.py1375 class PyZipFile(ZipFile): class
/external/chromium-trace/catapult/third_party/zipfile/
Dzipfile_2_7_13.py1377 class PyZipFile(ZipFile): class
/external/python/cpython3/Lib/
Dzipfile.py1922 class PyZipFile(ZipFile): class
/external/tensorflow/tensorflow/lite/testing/
Dgenerate_examples.py432 archive = zipfile.PyZipFile(zip_path, "w")
/external/python/cpython3/Doc/whatsnew/
D3.4.rst1785 The :meth:`~zipfile.PyZipFile.writepy` method of the
1786 :class:`~zipfile.PyZipFile` class has a new *filterfunc* option that can be
/external/python/cpython3/Misc/
DHISTORY3565 - 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.