diff options
author | Greg Ward <gward@python.net> | 2000-06-24 00:23:20 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 2000-06-24 00:23:20 (GMT) |
commit | 2ff7887270385bd6dddc2d5461486334b4fec8bc (patch) | |
tree | 35c3f4814ec717a72c03a70d24bad2cccf1ac3aa /Lib/distutils/command/build_clib.py | |
parent | ffcaf2dd72ef0735d0eea125f1789d48c575f9b5 (diff) | |
download | cpython-2ff7887270385bd6dddc2d5461486334b4fec8bc.zip cpython-2ff7887270385bd6dddc2d5461486334b4fec8bc.tar.gz cpython-2ff7887270385bd6dddc2d5461486334b4fec8bc.tar.bz2 |
Stylistic/formatting changes to Rene Liebscher's '--help-xxx' patch.
Diffstat (limited to 'Lib/distutils/command/build_clib.py')
-rw-r--r-- | Lib/distutils/command/build_clib.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/distutils/command/build_clib.py b/Lib/distutils/command/build_clib.py index 72df372..9a82ac0 100644 --- a/Lib/distutils/command/build_clib.py +++ b/Lib/distutils/command/build_clib.py @@ -42,9 +42,10 @@ class build_clib (Command): ('compiler=', 'c', "specify the compiler type"), ] + help_options = [ ('help-compiler', None, - "lists available compilers",show_compilers), + "list available compilers", show_compilers), ] def initialize_options (self): |