/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_archive_util.py | 13 make_zipfile, make_archive, 228 self.assertRaises(ValueError, make_archive, base_name, 'xxx') 232 # testing make_archive with owner and group, with various combinations 242 res = make_archive(base_name, 'zip', root_dir, base_dir, owner=owner, 246 res = make_archive(base_name, 'zip', root_dir, base_dir) 249 res = make_archive(base_name, 'tar', root_dir, base_dir, 253 res = make_archive(base_name, 'tar', root_dir, base_dir, 290 make_archive('xxx', 'xxx', root_dir=self.mkdtemp())
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_archive_util.py | 13 make_zipfile, make_archive, 228 self.assertRaises(ValueError, make_archive, base_name, 'xxx') 232 # testing make_archive with owner and group, with various combinations 242 res = make_archive(base_name, 'zip', root_dir, base_dir, owner=owner, 246 res = make_archive(base_name, 'zip', root_dir, base_dir) 249 res = make_archive(base_name, 'tar', root_dir, base_dir, 253 res = make_archive(base_name, 'tar', root_dir, base_dir, 290 make_archive('xxx', 'xxx', root_dir=self.mkdtemp())
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/ |
bdist_dumb.py | 122 filename = self.make_archive(pseudoinstall_root,
|
bdist_wininst.py | 186 arcname = self.make_archive(archive_basename, "zip",
|
sdist.py | 463 file = self.make_archive(base_name, fmt, base_dir=base_dir,
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/ |
bdist_dumb.py | 122 filename = self.make_archive(pseudoinstall_root,
|
bdist_wininst.py | 186 arcname = self.make_archive(archive_basename, "zip",
|
sdist.py | 463 file = self.make_archive(base_name, fmt, base_dir=base_dir,
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_shutil.py | 13 from shutil import (_make_tarball, _make_zipfile, make_archive, namespace 512 self.assertRaises(ValueError, make_archive, base_name, 'xxx') 516 # testing make_archive with owner and group, with various combinations 526 res = make_archive(base_name, 'zip', root_dir, base_dir, owner=owner, 530 res = make_archive(base_name, 'zip', root_dir, base_dir) 533 res = make_archive(base_name, 'tar', root_dir, base_dir, 537 res = make_archive(base_name, 'tar', root_dir, base_dir, 575 make_archive('xxx', 'xxx', root_dir=self.mkdtemp())
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_shutil.py | 13 from shutil import (_make_tarball, _make_zipfile, make_archive, namespace 512 self.assertRaises(ValueError, make_archive, base_name, 'xxx') 516 # testing make_archive with owner and group, with various combinations 526 res = make_archive(base_name, 'zip', root_dir, base_dir, owner=owner, 530 res = make_archive(base_name, 'zip', root_dir, base_dir) 533 res = make_archive(base_name, 'tar', root_dir, base_dir, 537 res = make_archive(base_name, 'tar', root_dir, base_dir, 575 make_archive('xxx', 'xxx', root_dir=self.mkdtemp())
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/ |
cmd.py | 388 def make_archive(self, base_name, format, root_dir=None, base_dir=None, member in class:Command 390 return archive_util.make_archive(base_name, format, root_dir,
|
archive_util.py | 193 def make_archive(base_name, format, root_dir=None, base_dir=None, verbose=0, function
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/ |
cmd.py | 388 def make_archive(self, base_name, format, root_dir=None, base_dir=None, member in class:Command 390 return archive_util.make_archive(base_name, format, root_dir,
|
archive_util.py | 193 def make_archive(base_name, format, root_dir=None, base_dir=None, verbose=0, function
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
shutil.py | 27 "ExecError", "make_archive", "get_archive_formats", 504 def make_archive(base_name, format, root_dir=None, base_dir=None, verbose=0, function
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
shutil.py | 27 "ExecError", "make_archive", "get_archive_formats", 504 def make_archive(base_name, format, root_dir=None, base_dir=None, verbose=0, function
|