]> git.proxmox.com Git - mirror_edk2.git/blobdiff - AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/command/command_template
edk2: Remove AppPkg, StdLib, StdLibPrivateInternalFiles
[mirror_edk2.git] / AppPkg / Applications / Python / Python-2.7.2 / Lib / distutils / command / command_template
diff --git a/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/command/command_template b/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/command/command_template
deleted file mode 100644 (file)
index e7346e9..0000000
+++ /dev/null
@@ -1,45 +0,0 @@
-"""distutils.command.x\r
-\r
-Implements the Distutils 'x' command.\r
-"""\r
-\r
-# created 2000/mm/dd, John Doe\r
-\r
-__revision__ = "$Id$"\r
-\r
-from distutils.core import Command\r
-\r
-\r
-class x (Command):\r
-\r
-    # Brief (40-50 characters) description of the command\r
-    description = ""\r
-\r
-    # List of option tuples: long name, short name (None if no short\r
-    # name), and help string.\r
-    user_options = [('', '',\r
-                     ""),\r
-                   ]\r
-\r
-\r
-    def initialize_options (self):\r
-        self. = None\r
-        self. = None\r
-        self. = None\r
-\r
-    # initialize_options()\r
-\r
-\r
-    def finalize_options (self):\r
-        if self.x is None:\r
-            self.x = \r
-\r
-    # finalize_options()\r
-\r
-\r
-    def run (self):\r
-\r
-\r
-    # run()\r
-\r
-# class x\r