From: Gregory P. Smith Date: Sat, 13 May 2000 03:32:36 +0000 (+0000) Subject: Template for writing Distutils command modules. X-Git-Tag: v2.0b1~1724 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2c067ef90493c0f1bca6d454c048fd964e1a8c57;p=thirdparty%2FPython%2Fcpython.git Template for writing Distutils command modules. --- diff --git a/Lib/distutils/command/command_template b/Lib/distutils/command/command_template new file mode 100644 index 000000000000..f0329aa9f923 --- /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