Home
last modified time | relevance | path

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

/external/python/cpython3/Doc/library/
Dzipfile.rst64 .. class:: PyZipFile
538 PyZipFile Objects
541 The :class:`PyZipFile` constructor takes the same parameters as the
544 .. class:: PyZipFile(file, mode='r', compression=ZIP_STORED, allowZip64=True, \
555 .. method:: PyZipFile.writepy(pathname, basename='', filterfunc=None)
560 If the *optimize* parameter to :class:`PyZipFile` was not given or ``-1``,
563 If the *optimize* parameter to :class:`PyZipFile` was ``0``, ``1`` or
587 >>> zf = PyZipFile('myprog.zip')
/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/cpython3/Lib/test/
Dtest_zipfile.py1156 with TemporaryFile() as t, zipfile.PyZipFile(t, "w") as zipfp:
1173 with TemporaryFile() as t, zipfile.PyZipFile(t, "w") as zipfp:
1189 with TemporaryFile() as t, zipfile.PyZipFile(t, "w") as zipfp:
1203 with TemporaryFile() as t, zipfile.PyZipFile(t, "w") as zipfp:
1236 zipfile.PyZipFile(t, "w", optimize=optlevel) as zipfp:
1255 with TemporaryFile() as t, zipfile.PyZipFile(t, "w") as zipfp:
1275 with TemporaryFile() as t, zipfile.PyZipFile(t, "w") as zipfp:
1287 with TemporaryFile() as t, zipfile.PyZipFile(t, "w") as zipfp:
1299 with TemporaryFile() as t, zipfile.PyZipFile(t, "w") as zipfp:
1321 with TemporaryFile() as t, zipfile.PyZipFile(t, "w") as zipfp:
/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/tensorflow/tensorflow/lite/testing/
Dgenerate_examples_lib.py316 with zipfile.PyZipFile(zip_path, "w") as archive:
Dzip_test_utils.py323 archive = zipfile.PyZipFile(zip_path, "w")
/external/python/cpython2/Lib/
Dzipfile.py1375 class PyZipFile(ZipFile): class
/external/python/cpython3/Lib/
Dzipfile.py1932 class PyZipFile(ZipFile): class
/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.