From: Greg Ward Date: Wed, 6 Sep 2000 02:06:27 +0000 (+0000) Subject: Typo fix. X-Git-Tag: v2.0b2~451 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6a2035d76ba9572ccd2ed61d59df46e2bdcb74ed;p=python Typo fix. --- diff --git a/Lib/distutils/command/build_ext.py b/Lib/distutils/command/build_ext.py index 4d779b8264..3f714c54d8 100644 --- a/Lib/distutils/command/build_ext.py +++ b/Lib/distutils/command/build_ext.py @@ -55,7 +55,7 @@ class build_ext (Command): ('build-temp=', 't', "directory for temporary files (build by-products)"), ('inplace', 'i', - "ignore build-lib and put compiled extensions into the source" + + "ignore build-lib and put compiled extensions into the source " + "directory alongside your pure Python modules"), ('include-dirs=', 'I', "list of directories to search for header files"), diff --git a/Lib/distutils/command/build_py.py b/Lib/distutils/command/build_py.py index 66f50241c1..5fcd18e788 100644 --- a/Lib/distutils/command/build_py.py +++ b/Lib/distutils/command/build_py.py @@ -20,7 +20,7 @@ class build_py (Command): user_options = [ ('build-lib=', 'd', "directory to \"build\" (copy) to"), - ('force', 'f', "forcibly build everything (ignore file timestamps"), + ('force', 'f', "forcibly build everything (ignore file timestamps)"), ]