diff options
author | Gregory P. Smith <greg@mad-scientist.com> | 2000-05-13 03:35:05 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@mad-scientist.com> | 2000-05-13 03:35:05 (GMT) |
commit | 8711a2e1501dcaac7ddee56a21b5b1cd60e2803e (patch) | |
tree | 8fe64e17a61e26167e97b6d741254a13513dd789 | |
parent | 2c067ef90493c0f1bca6d454c048fd964e1a8c57 (diff) | |
download | cpython-8711a2e1501dcaac7ddee56a21b5b1cd60e2803e.zip cpython-8711a2e1501dcaac7ddee56a21b5b1cd60e2803e.tar.gz cpython-8711a2e1501dcaac7ddee56a21b5b1cd60e2803e.tar.bz2 |
Changed default developer name.
Added some guiding comments.
-rw-r--r-- | Lib/distutils/command/command_template | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Lib/distutils/command/command_template b/Lib/distutils/command/command_template index f0329aa..73c1c19 100644 --- a/Lib/distutils/command/command_template +++ b/Lib/distutils/command/command_template @@ -2,7 +2,7 @@ Implements the Distutils 'x' command.""" -# created 2000/mm/dd, Greg Ward +# created 2000/mm/dd, John Doe __revision__ = "$Id$" @@ -11,8 +11,11 @@ from distutils.core import Command class x (Command): + # Brief (40-50 characters) description of the command description = "" + # List of option tuples: long name, short name (None if no short + # name), and help string. user_options = [('', '', ""), ] @@ -27,6 +30,8 @@ class x (Command): def finalize_options (self): + if self.x is None: + self.x = # finalize_options() |