]> git.proxmox.com Git - mirror_edk2.git/blame - AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/command/command_template
EmbeddedPkg: Extend NvVarStoreFormattedLib LIBRARY_CLASS
[mirror_edk2.git] / AppPkg / Applications / Python / Python-2.7.2 / Lib / distutils / command / command_template
CommitLineData
4710c53d 1"""distutils.command.x\r
2\r
3Implements the Distutils 'x' command.\r
4"""\r
5\r
6# created 2000/mm/dd, John Doe\r
7\r
8__revision__ = "$Id$"\r
9\r
10from distutils.core import Command\r
11\r
12\r
13class x (Command):\r
14\r
15 # Brief (40-50 characters) description of the command\r
16 description = ""\r
17\r
18 # List of option tuples: long name, short name (None if no short\r
19 # name), and help string.\r
20 user_options = [('', '',\r
21 ""),\r
22 ]\r
23\r
24\r
25 def initialize_options (self):\r
26 self. = None\r
27 self. = None\r
28 self. = None\r
29\r
30 # initialize_options()\r
31\r
32\r
33 def finalize_options (self):\r
34 if self.x is None:\r
35 self.x = \r
36\r
37 # finalize_options()\r
38\r
39\r
40 def run (self):\r
41\r
42\r
43 # run()\r
44\r
45# class x\r