• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1"""distutils.command.x
2
3Implements the Distutils 'x' command.
4"""
5
6# created 2000/mm/dd, John Doe
7
8__revision__ = "$Id$"
9
10from distutils.core import Command
11
12
13class x(Command):
14
15    # Brief (40-50 characters) description of the command
16    description = ""
17
18    # List of option tuples: long name, short name (None if no short
19    # name), and help string.
20    user_options = [('', '',
21                     ""),
22                   ]
23
24    def initialize_options(self):
25        self. = None
26        self. = None
27        self. = None
28
29    def finalize_options(self):
30        if self.x is None:
31            self.x =
32
33    def run(self):
34