Searched refs:ZipInfo (Results 1 – 14 of 14) sorted by relevance
/third_party/python/Doc/library/ |
D | zipfile.rst | 70 .. class:: ZipInfo(filename='NoName', date_time=(1980,1,1,0,0,0)) 232 Return a :class:`ZipInfo` object with information about the archive member 239 Return a list containing a :class:`ZipInfo` object for each member of the 252 can be either the name of a file within the archive or a :class:`ZipInfo` 278 construct a :class:`ZipInfo` object with :attr:`~ZipInfo.file_size` set, and 284 or a :class:`ZipInfo` object. You will appreciate this when trying to read a 303 must be its full name or a :class:`ZipInfo` object. Its file information is 305 to extract to. *member* can be a filename or a :class:`ZipInfo` object. 364 file in the archive, or a :class:`ZipInfo` object. The archive must be open for 425 name it will be given in the archive, or a :class:`ZipInfo` instance. If it's [all …]
|
/third_party/python/Lib/test/ |
D | test_zipimport.py | 16 from zipfile import ZipFile, ZipInfo, ZIP_STORED, ZIP_DEFLATED 115 zinfo = ZipInfo(name, time.localtime(mtime)) 450 zinfo = ZipInfo(name, time.localtime(mtime)) 522 zinfo = ZipInfo(name, time.localtime(mtime)) 537 zinfo = ZipInfo(name, time.localtime(mtime)) 563 zinfo = ZipInfo(name, time.localtime(mtime)) 737 zinfo = ZipInfo(TESTMOD + ".py", time.localtime(NOW)) 748 zinfo = ZipInfo(TESTMOD + ".py", time.localtime(NOW))
|
D | test_zipfile.py | 1483 zinfo = zipfile.ZipInfo() 1547 zinfo = zipfile.ZipInfo(data) 1920 zipfile.ZipInfo, 'seventies', (1979, 1, 1, 0, 0, 0)) 1924 zi = zipfile.ZipInfo(filename="empty") 1929 zi = zipfile.ZipInfo() 2622 zi = zipfile.ZipInfo.from_file(__file__) 2628 zi = zipfile.ZipInfo.from_file(pathlib.Path(__file__)) 2634 zi = zipfile.ZipInfo.from_file(os.fsencode(__file__), 'test') 2641 zi = zipfile.ZipInfo.from_file(f.fileno(), 'test') 2648 zi = zipfile.ZipInfo.from_file(dirpath, 'stdlib_tests')
|
/third_party/skia/infra/bots/ |
D | zip_utils.py | 38 zi = zipfile.ZipInfo(filepath)
|
/third_party/flutter/skia/infra/bots/ |
D | zip_utils.py | 37 zi = zipfile.ZipInfo(filepath)
|
/third_party/python/Lib/ |
D | zipfile.py | 318 class ZipInfo (object): class 1365 x = ZipInfo(filename) 1494 if isinstance(name, ZipInfo): 1498 zinfo = ZipInfo(name) 1655 if not isinstance(member, ZipInfo): 1728 zinfo = ZipInfo.from_file(filename, arcname, 1774 if not isinstance(zinfo_or_arcname, ZipInfo): 1775 zinfo = ZipInfo(filename=zinfo_or_arcname,
|
/third_party/jinja2/ |
D | environment.py | 746 info = ZipInfo(filename) 757 from zipfile import ZipFile, ZipInfo, ZIP_DEFLATED, ZIP_STORED
|
/third_party/node/tools/inspector_protocol/jinja2/ |
D | environment.py | 685 info = ZipInfo(filename) 696 from zipfile import ZipFile, ZipInfo, ZIP_DEFLATED, ZIP_STORED
|
/third_party/skia/third_party/externals/jinja2/ |
D | environment.py | 746 info = ZipInfo(filename) 757 from zipfile import ZipFile, ZipInfo, ZIP_DEFLATED, ZIP_STORED
|
/third_party/python/Doc/whatsnew/ |
D | 3.6.rst | 1758 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.
|
D | 2.6.rst | 2656 take either a filename or a :class:`ZipInfo` object. This is useful when an
|
/third_party/python/Misc/NEWS.d/ |
D | 3.6.0a1.rst | 1886 Added zipfile.ZipInfo.from_file() and zipinfo.ZipInfo.is_dir(). Patch by
|
D | 3.9.0a1.rst | 3271 Fix :func:`repr` on empty :class:`ZipInfo` object. Patch by Mickaël
|
/third_party/python/Misc/ |
D | HISTORY | 16520 file name rather than a ZipInfo instance, so files are extracted with
|