/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_archive_util.py | 57 self._make_tarball('archive') 59 def _make_tarball(self, target_name): member in class:ArchiveUtilTestCase 302 self._make_tarball(u'archive') 312 self._make_tarball(u'årchiv') # note this isn't a real word 322 self._make_tarball(u'??????') # japanese for archive
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_archive_util.py | 57 self._make_tarball('archive') 59 def _make_tarball(self, target_name): member in class:ArchiveUtilTestCase 302 self._make_tarball(u'archive') 312 self._make_tarball(u'årchiv') # note this isn't a real word 322 self._make_tarball(u'??????') # japanese for archive
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
shutil.py | 337 def _make_tarball(base_name, base_dir, compress="gzip", verbose=0, dry_run=0, function 464 'gztar': (_make_tarball, [('compress', 'gzip')], "gzip'ed tar-file"), 465 'bztar': (_make_tarball, [('compress', 'bzip2')], "bzip2'ed tar-file"), 466 'tar': (_make_tarball, [('compress', None)], "uncompressed tar file"),
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
shutil.py | 337 def _make_tarball(base_name, base_dir, compress="gzip", verbose=0, dry_run=0, function 464 'gztar': (_make_tarball, [('compress', 'gzip')], "gzip'ed tar-file"), 465 'bztar': (_make_tarball, [('compress', 'bzip2')], "bzip2'ed tar-file"), 466 'tar': (_make_tarball, [('compress', None)], "uncompressed tar file"),
|
/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 393 _make_tarball(splitdrive(base_name)[1], '.') 406 _make_tarball(splitdrive(base_name)[1], '.', compress=None) 443 _make_tarball(base_name, 'dist') 473 _make_tarball(base_name, 'dist', compress=None) 484 _make_tarball(base_name, 'dist', compress=None, dry_run=True) 550 archive_name = _make_tarball(base_name, 'dist', compress=None,
|
/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 393 _make_tarball(splitdrive(base_name)[1], '.') 406 _make_tarball(splitdrive(base_name)[1], '.', compress=None) 443 _make_tarball(base_name, 'dist') 473 _make_tarball(base_name, 'dist', compress=None) 484 _make_tarball(base_name, 'dist', compress=None, dry_run=True) 550 archive_name = _make_tarball(base_name, 'dist', compress=None,
|