Home
last modified time | relevance | path

Searched refs:ZipInfo (Results 1 – 21 of 21) sorted by relevance

/external/python/cpython2/Doc/library/
Dzipfile.rst52 .. class:: ZipInfo([filename[, date_time]])
149 Return a :class:`ZipInfo` object with information about the archive member
156 Return a list containing a :class:`ZipInfo` object for each member of the
172 the name of the file in the archive, or a :class:`ZipInfo` object. The *mode*
200 or a :class:`ZipInfo` object. You will appreciate this when trying to read a
209 must be its full name or a :class:`ZipInfo` object). Its file information is
211 to extract to. *member* can be a filename or a :class:`ZipInfo` object.
264 file in the archive, or a :class:`ZipInfo` object. The archive must be open for
270 *pwd* was added, and *name* can now be a :class:`ZipInfo` object.
312 name it will be given in the archive, or a :class:`ZipInfo` instance. If it's
[all …]
/external/python/cpython3/Doc/library/
Dzipfile.rst61 .. class:: ZipInfo(filename='NoName', date_time=(1980,1,1,0,0,0))
215 Return a :class:`ZipInfo` object with information about the archive member
222 Return a list containing a :class:`ZipInfo` object for each member of the
235 can be either the name of a file within the archive or a :class:`ZipInfo`
261 construct a :class:`ZipInfo` object with :attr:`~ZipInfo.file_size` set, and
267 or a :class:`ZipInfo` object. You will appreciate this when trying to read a
286 must be its full name or a :class:`ZipInfo` object. Its file information is
288 to extract to. *member* can be a filename or a :class:`ZipInfo` object.
347 file in the archive, or a :class:`ZipInfo` object. The archive must be open for
403 name it will be given in the archive, or a :class:`ZipInfo` instance. If it's
[all …]
/external/python/setuptools/pkg_resources/tests/
Dtest_pkg_resources.py57 zip_info = zipfile.ZipInfo()
61 zip_info = zipfile.ZipInfo()
65 zip_info = zipfile.ZipInfo()
69 zip_info = zipfile.ZipInfo()
/external/python/cpython2/Lib/test/
Dtest_zipimport.py18 from zipfile import ZipFile, ZipInfo, ZIP_STORED, ZIP_DEFLATED
73 zinfo = ZipInfo(name, time.localtime(mtime))
211 zinfo = ZipInfo(name, time.localtime(mtime))
255 zinfo = ZipInfo(name, time.localtime(mtime))
Dtest_zipfile.py548 zinfo = zipfile.ZipInfo()
1274 zipfile.ZipInfo, 'seventies', (1979, 1, 1, 0, 0, 0))
/external/python/cpython3/Lib/test/
Dtest_zipimport.py12 from zipfile import ZipFile, ZipInfo, ZIP_STORED, ZIP_DEFLATED
116 zinfo = ZipInfo(name, time.localtime(mtime))
425 zinfo = ZipInfo(name, time.localtime(mtime))
483 zinfo = ZipInfo(name, time.localtime(mtime))
661 zinfo = ZipInfo(TESTMOD + ".py", time.localtime(NOW))
674 zinfo = ZipInfo(TESTMOD + ".py", time.localtime(NOW))
Dtest_zipfile.py1170 zinfo = zipfile.ZipInfo()
1234 zinfo = zipfile.ZipInfo(data)
1599 zipfile.ZipInfo, 'seventies', (1979, 1, 1, 0, 0, 0))
2226 zi = zipfile.ZipInfo.from_file(__file__)
2232 zi = zipfile.ZipInfo.from_file(pathlib.Path(__file__))
2238 zi = zipfile.ZipInfo.from_file(os.fsencode(__file__), 'test')
2245 zi = zipfile.ZipInfo.from_file(f.fileno(), 'test')
2252 zi = zipfile.ZipInfo.from_file(dirpath, 'stdlib_tests')
/external/python/cpython2/Lib/
Dzipfile.py262 class ZipInfo (object): class
844 x = ZipInfo(filename)
956 if isinstance(name, ZipInfo):
1022 if not isinstance(member, ZipInfo):
1135 zinfo = ZipInfo(arcname, date_time)
1212 if not isinstance(zinfo_or_arcname, ZipInfo):
1213 zinfo = ZipInfo(filename=zinfo_or_arcname,
/external/chromium-trace/catapult/third_party/zipfile/
Dzipfile_2_7_13.py262 class ZipInfo (object): class
847 x = ZipInfo(filename)
959 if isinstance(name, ZipInfo):
1025 if not isinstance(member, ZipInfo):
1138 zinfo = ZipInfo(arcname, date_time)
1215 if not isinstance(zinfo_or_arcname, ZipInfo):
1216 zinfo = ZipInfo(filename=zinfo_or_arcname,
/external/skia/infra/bots/
Dzip_utils.py37 zi = zipfile.ZipInfo(filepath)
/external/skqp/infra/bots/
Dzip_utils.py37 zi = zipfile.ZipInfo(filepath)
/external/python/cpython3/Lib/
Dzipfile.py313 class ZipInfo (object): class
1329 x = ZipInfo(filename)
1458 if isinstance(name, ZipInfo):
1462 zinfo = ZipInfo(name)
1637 if not isinstance(member, ZipInfo):
1710 zinfo = ZipInfo.from_file(filename, arcname)
1755 if not isinstance(zinfo_or_arcname, ZipInfo):
1756 zinfo = ZipInfo(filename=zinfo_or_arcname,
/external/libchrome/third_party/jinja2/
Denvironment.py685 info = ZipInfo(filename)
696 from zipfile import ZipFile, ZipInfo, ZIP_DEFLATED, ZIP_STORED
/external/libchrome/build/android/gyp/util/
Dbuild_utils.py307 zipinfo = zipfile.ZipInfo(filename=zip_path, date_time=HERMETIC_TIMESTAMP)
/external/python/cpython2/Misc/NEWS.d/
D2.6b3.rst488 than a ZipInfo instance, so files are extracted with mode 0600 rather than
D2.6b1.rst529 ZipInfo instance. This allows handling duplicate filenames in zipfiles.
/external/python/cpython3/Doc/whatsnew/
D3.6.rst1758 A new :meth:`ZipInfo.from_file() <zipfile.ZipInfo.from_file>` class method
1759 allows making a :class:`~zipfile.ZipInfo` instance from a filesystem file.
1760 A new :meth:`ZipInfo.is_dir() <zipfile.ZipInfo.is_dir>` method can be used
1761 to check if the :class:`~zipfile.ZipInfo` instance represents a directory.
D2.6.rst2656 take either a filename or a :class:`ZipInfo` object. This is useful when an
/external/python/cpython3/Misc/NEWS.d/
D3.6.0a1.rst1887 Added zipfile.ZipInfo.from_file() and zipinfo.ZipInfo.is_dir(). Patch by
/external/python/cpython2/Doc/whatsnew/
D2.6.rst2652 take either a filename or a :class:`ZipInfo` object. This is useful when an
/external/python/cpython3/Misc/
DHISTORY16520 file name rather than a ZipInfo instance, so files are extracted with