mirror of
https://github.com/python/cpython.git
synced 2025-11-01 18:51:43 +00:00
Added 'script_name' and 'script_args' instance attributes to Distribution.
Changed 'core.setup()' so it sets them to reasonable defaults. Tweaked how the "usage" string is generated: 'core' now provides 'gen_usage()', which is used instead of 'USAGE'. Modified "build_py" and "sdist" commands to refer to 'self.distribution.script_name' rather than 'sys.argv[0]'.
This commit is contained in:
parent
31f182e830
commit
9821bf4e62
4 changed files with 58 additions and 37 deletions
|
|
@ -202,7 +202,10 @@ class sdist (Command):
|
|||
# manifest, but there's no template -- which will happen if the
|
||||
# developer elects to generate a manifest some other way -- then we
|
||||
# can't regenerate the manifest, so we don't.)
|
||||
setup_newer = dep_util.newer(sys.argv[0], self.manifest)
|
||||
self.debug_print("checking if %s newer than %s" %
|
||||
(self.distribution.script_name, self.manifest))
|
||||
setup_newer = dep_util.newer(self.distribution.script_name,
|
||||
self.manifest)
|
||||
|
||||
# cases:
|
||||
# 1) no manifest, template exists: generate manifest
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue