diff options
author | Greg Ward <gward@python.net> | 1999-09-13 13:54:06 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 1999-09-13 13:54:06 (GMT) |
commit | 68bdf3eeb7497757f9bdf46ba6509d440330db4b (patch) | |
tree | 00db38e9ce3c2ee7a581e4d1c02315c1be9be1b4 | |
parent | 36e68e21b4d9e977374ca3ed8756812a1e5b66a1 (diff) | |
download | cpython-68bdf3eeb7497757f9bdf46ba6509d440330db4b.zip cpython-68bdf3eeb7497757f9bdf46ba6509d440330db4b.tar.gz cpython-68bdf3eeb7497757f9bdf46ba6509d440330db4b.tar.bz2 |
Comment addition.
-rw-r--r-- | Lib/distutils/command/build_py.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/distutils/command/build_py.py b/Lib/distutils/command/build_py.py index 28aefa9..0bbe339 100644 --- a/Lib/distutils/command/build_py.py +++ b/Lib/distutils/command/build_py.py @@ -26,6 +26,9 @@ class BuildPy (Command): def set_final_options (self): self.set_undefined_options ('build', ('libdir', 'dir')) + # 'package' is an alias option in Distribution (hmmm, we + # really should change to "pull" options from Distribution + # rather than "pushing" them out to commands...) if self.package is None: self.package = '' |