summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGregory P. Smith <greg@mad-scientist.com>2000-05-13 03:32:36 (GMT)
committerGregory P. Smith <greg@mad-scientist.com>2000-05-13 03:32:36 (GMT)
commit2c067ef90493c0f1bca6d454c048fd964e1a8c57 (patch)
treedaaf0ba818ce32f67af552b6dfa8b69eb8c7213c
parent86ee81e34bcd223c94de2a65ed7b88f976989410 (diff)
downloadcpython-2c067ef90493c0f1bca6d454c048fd964e1a8c57.zip
cpython-2c067ef90493c0f1bca6d454c048fd964e1a8c57.tar.gz
cpython-2c067ef90493c0f1bca6d454c048fd964e1a8c57.tar.bz2
Template for writing Distutils command modules.
-rw-r--r--Lib/distutils/command/command_template39
1 files changed, 39 insertions, 0 deletions
diff --git a/Lib/distutils/command/command_template b/Lib/distutils/command/command_template
new file mode 100644
index 0000000..f0329aa
--- /dev/null
+++ b/Lib/distutils/command/command_template
@@ -0,0 +1,39 @@
+"""distutils.command.x
+
+Implements the Distutils 'x' command."""
+
+# created 2000/mm/dd, Greg Ward
+
+__revision__ = "$Id$"
+
+from distutils.core import Command
+
+
+class x (Command):
+
+ description = ""
+
+ user_options = [('', '',
+ ""),
+ ]
+
+
+ def initialize_options (self):
+ self. = None
+ self. = None
+ self. = None
+
+ # initialize_options()
+
+
+ def finalize_options (self):
+
+ # finalize_options()
+
+
+ def run (self):
+
+
+ # run()
+
+# class x