mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
Changed default developer name.
Added some guiding comments.
This commit is contained in:
parent
2c067ef904
commit
8711a2e150
1 changed files with 6 additions and 1 deletions
|
@ -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()
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue