Searched refs:writepy (Results 1 – 5 of 5) sorted by relevance
/third_party/python/Lib/test/ |
D | test_zipfile.py | 1169 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/ |
D | zipfile.rst | 572 .. 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/ |
D | zipfile.py | 1942 def writepy(self, pathname, basename="", filterfunc=None): member in PyZipFile 1986 self.writepy(path, basename,
|
/third_party/python/Doc/whatsnew/ |
D | 3.4.rst | 1785 The :meth:`~zipfile.PyZipFile.writepy` method of the
|
/third_party/python/Misc/ |
D | HISTORY | 3565 - Issue #19274: Add a filterfunc parameter to PyZipFile.writepy.
|