Lines Matching refs:target
76 def create_archive(source, target=None, interpreter=None, main=None,
106 _copy_archive(source, target, interpreter)
129 if target is None:
130 target = source.with_suffix('.pyz')
131 elif not hasattr(target, 'write'):
132 target = pathlib.Path(target)
134 with _maybe_open(target, 'wb') as fd:
146 if interpreter and not hasattr(target, 'write'):
147 target.chmod(target.stat().st_mode | stat.S_IEXEC)