Merged release21-maint changes.
[python/dscho.git] / Lib / distutils / command / command_template
blob50bbab7b6ec0d44120f3e978164ceceedb267e14
1 """distutils.command.x
3 Implements the Distutils 'x' command.
4 """
6 # created 2000/mm/dd, John Doe
8 __revision__ = "$Id$"
10 from distutils.core import Command
13 class x (Command):
15     # Brief (40-50 characters) description of the command
16     description = ""
18     # List of option tuples: long name, short name (None if no short
19     # name), and help string.
20     user_options = [('', '',
21                      ""),
22                    ]
25     def initialize_options (self):
26         self. = None
27         self. = None
28         self. = None
30     # initialize_options()
33     def finalize_options (self):
34         if self.x is None:
35             self.x = 
37     # finalize_options()
40     def run (self):
43     # run()
45 # class x