]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Changed default developer name.
authorGregory P. Smith <greg@mad-scientist.com>
Sat, 13 May 2000 03:35:05 +0000 (03:35 +0000)
committerGregory P. Smith <greg@mad-scientist.com>
Sat, 13 May 2000 03:35:05 +0000 (03:35 +0000)
Added some guiding comments.

Lib/distutils/command/command_template

index f0329aa9f923c2b38b0fe03e67ccd07f43a666d4..73c1c190dba09b078cd71ea22481573840d10921 100644 (file)
@@ -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()