~ubuntu-branches/ubuntu/maverick/python3.1/maverick

« back to all changes in this revision

Viewing changes to Lib/distutils/command/command_template

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2009-03-23 00:01:27 UTC
  • Revision ID: james.westby@ubuntu.com-20090323000127-5fstfxju4ufrhthq
Tags: upstream-3.1~a1+20090322
ImportĀ upstreamĀ versionĀ 3.1~a1+20090322

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
"""distutils.command.x
 
2
 
 
3
Implements the Distutils 'x' command.
 
4
"""
 
5
 
 
6
# created 2000/mm/dd, John Doe
 
7
 
 
8
__revision__ = "$Id$"
 
9
 
 
10
from distutils.core import Command
 
11
 
 
12
 
 
13
class 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):