Home | History | Annotate | Download | only in python2.7

Lines Matching refs:base_name

337 def _make_tarball(base_name, base_dir, compress="gzip", verbose=0, dry_run=0,
348 The output tar file will be named 'base_name' + ".tar", possibly plus
361 archive_name = base_name + '.tar' + compress_ext.get(compress, '')
416 def _make_zipfile(base_name, base_dir, verbose=0, dry_run=0, logger=None):
419 The output zip file will be named 'base_name' + ".zip". Uses either the
425 zip_filename = base_name + ".zip"
426 archive_dir = os.path.dirname(base_name)
504 def make_archive(base_name, format, root_dir=None, base_dir=None, verbose=0,
508 'base_name' is the name of the file to create, minus any format-specific
526 base_name = os.path.abspath(base_name)
549 filename = func(base_name, base_dir, **kwargs)