mirror of
https://github.com/python/cpython.git
synced 2025-11-01 18:51:43 +00:00
General cleanup, raise normalization in Lib/distutils.
This commit is contained in:
parent
a73bfee73d
commit
5b7e9d76f3
47 changed files with 963 additions and 1640 deletions
|
|
@ -10,7 +10,7 @@ __revision__ = "$Id$"
|
|||
from distutils.core import Command
|
||||
|
||||
|
||||
class x (Command):
|
||||
class x(Command):
|
||||
|
||||
# Brief (40-50 characters) description of the command
|
||||
description = ""
|
||||
|
|
@ -21,25 +21,13 @@ class x (Command):
|
|||
""),
|
||||
]
|
||||
|
||||
|
||||
def initialize_options (self):
|
||||
def initialize_options(self):
|
||||
self. = None
|
||||
self. = None
|
||||
self. = None
|
||||
|
||||
# initialize_options()
|
||||
|
||||
|
||||
def finalize_options (self):
|
||||
def finalize_options(self):
|
||||
if self.x is None:
|
||||
self.x =
|
||||
|
||||
# finalize_options()
|
||||
|
||||
|
||||
def run (self):
|
||||
|
||||
|
||||
# run()
|
||||
|
||||
# class x
|
||||
def run(self):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue