Commit ed02ed8a authored by Gregory P. Smith's avatar Gregory P. Smith

Changed default developer name.

Added some guiding comments.
parent e46022ce
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
Implements the Distutils 'x' command.""" Implements the Distutils 'x' command."""
# created 2000/mm/dd, Greg Ward # created 2000/mm/dd, John Doe
__revision__ = "$Id$" __revision__ = "$Id$"
...@@ -11,8 +11,11 @@ from distutils.core import Command ...@@ -11,8 +11,11 @@ from distutils.core import Command
class x (Command): class x (Command):
# Brief (40-50 characters) description of the command
description = "" description = ""
# List of option tuples: long name, short name (None if no short
# name), and help string.
user_options = [('', '', user_options = [('', '',
""), ""),
] ]
...@@ -27,6 +30,8 @@ class x (Command): ...@@ -27,6 +30,8 @@ class x (Command):
def finalize_options (self): def finalize_options (self):
if self.x is None:
self.x =
# finalize_options() # finalize_options()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment