Home
last modified time | relevance | path

Searched refs:is_zipfile (Results 1 – 11 of 11) sorted by relevance

/third_party/python/Tools/peg_generator/scripts/
Dtest_pypi_packages.py43 elif zipfile.is_zipfile(filename):
/third_party/node/tools/configure.d/
Dnodedownload.py73 if zipfile.is_zipfile(packedfile):
/third_party/python/Lib/test/
Dtest_zipfile.py1661 self.assertFalse(zipfile.is_zipfile(TESTFN))
1663 self.assertFalse(zipfile.is_zipfile(pathlib.Path(TESTFN)))
1666 self.assertFalse(zipfile.is_zipfile(fp))
1670 self.assertFalse(zipfile.is_zipfile(fp))
1672 self.assertFalse(zipfile.is_zipfile(fp))
1694 self.assertTrue(zipfile.is_zipfile(TESTFN))
1697 self.assertTrue(zipfile.is_zipfile(fp))
1703 self.assertTrue(zipfile.is_zipfile(fp))
1705 self.assertTrue(zipfile.is_zipfile(fp))
2744 self.assertTrue(zipfile.is_zipfile(name),
Dtest_shutil.py1414 self.assertTrue(zipfile.is_zipfile(res))
1427 self.assertTrue(zipfile.is_zipfile(res))
/third_party/python/Lib/
Dshutil.py1161 if not zipfile.is_zipfile(filename):
Dzipfile.py198 def is_zipfile(filename): function
/third_party/cef/tools/automate/
Dautomate-git.py201 if not zipfile.is_zipfile(archive_path):
/third_party/python/Misc/NEWS.d/
D3.9.0a3.rst310 like :func:`zipfile.is_zipfile`. Patch by William Woodruff.
/third_party/python/Doc/library/
Dzipfile.rst81 .. function:: is_zipfile(filename)
/third_party/python/Doc/whatsnew/
D2.7.rst1716 The :func:`~zipfile.is_zipfile` function now
/third_party/python/Misc/
DHISTORY15795 - Issue #4756: zipfile.is_zipfile() now supports file-like objects. Patch by