summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/command/command_template
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/distutils/command/command_template')
-rw-r--r--Lib/distutils/command/command_template20
1 files changed, 4 insertions, 16 deletions
diff --git a/Lib/distutils/command/command_template b/Lib/distutils/command/command_template
index 50bbab7..6106819 100644
--- a/Lib/distutils/command/command_template
+++ b/Lib/distutils/command/command_template
@@ -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):