Home
last modified time | relevance | path

Searched refs:writepy (Results 1 – 5 of 5) sorted by relevance

/third_party/python/Lib/test/
Dtest_zipfile.py1169 zipfp.writepy(fn)
1180 zipfp.writepy(fn, "testpackage")
1192 zipfp.writepy(packagedir)
1210 zipfp.writepy(packagedir)
1216 zipfp.writepy(packagedir, filterfunc=lambda whatever: False)
1224 zipfp.writepy(packagedir, filterfunc=filter)
1239 zipfp.writepy(packagedir)
1258 zipfp.writepy(TESTFN2)
1278 zipfp.writepy(TESTFN2, filterfunc=lambda fn:
1292 self.assertRaises(RuntimeError, zipfp.writepy, TESTFN)
[all …]
/third_party/python/Doc/library/
Dzipfile.rst572 .. method:: PyZipFile.writepy(pathname, basename='', filterfunc=None)
608 >>> zf.writepy('myprog', filterfunc=notests)
610 The :meth:`writepy` method makes archives with file names like
/third_party/python/Lib/
Dzipfile.py1942 def writepy(self, pathname, basename="", filterfunc=None): member in PyZipFile
1986 self.writepy(path, basename,
/third_party/python/Doc/whatsnew/
D3.4.rst1785 The :meth:`~zipfile.PyZipFile.writepy` method of the
/third_party/python/Misc/
DHISTORY3565 - Issue #19274: Add a filterfunc parameter to PyZipFile.writepy.