diff options
author | Greg Ward <gward@python.net> | 2000-09-06 02:06:27 +0000 |
---|---|---|
committer | Greg Ward <gward@python.net> | 2000-09-06 02:06:27 +0000 |
commit | 6a2035d76ba9572ccd2ed61d59df46e2bdcb74ed (patch) | |
tree | e61aab81cb008e36cc700a3c601e128cb33ce64c /Lib/distutils/command/build_ext.py | |
parent | 54589d4d97c4dd35fa40566e827685d310398524 (diff) | |
download | cpython-6a2035d76ba9572ccd2ed61d59df46e2bdcb74ed.tar.gz cpython-6a2035d76ba9572ccd2ed61d59df46e2bdcb74ed.zip |
Typo fix.
Diffstat (limited to 'Lib/distutils/command/build_ext.py')
-rw-r--r-- | Lib/distutils/command/build_ext.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/command/build_ext.py b/Lib/distutils/command/build_ext.py index 4d779b82645..3f714c54d8f 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"), |