summaryrefslogtreecommitdiffstats
path: root/Lib/distutils
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>2000-09-06 02:06:27 (GMT)
committerGreg Ward <gward@python.net>2000-09-06 02:06:27 (GMT)
commit6a2035d76ba9572ccd2ed61d59df46e2bdcb74ed (patch)
treee61aab81cb008e36cc700a3c601e128cb33ce64c /Lib/distutils
parent54589d4d97c4dd35fa40566e827685d310398524 (diff)
downloadcpython-6a2035d76ba9572ccd2ed61d59df46e2bdcb74ed.zip
cpython-6a2035d76ba9572ccd2ed61d59df46e2bdcb74ed.tar.gz
cpython-6a2035d76ba9572ccd2ed61d59df46e2bdcb74ed.tar.bz2
Typo fix.
Diffstat (limited to 'Lib/distutils')
-rw-r--r--Lib/distutils/command/build_ext.py2
-rw-r--r--Lib/distutils/command/build_py.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/Lib/distutils/command/build_ext.py b/Lib/distutils/command/build_ext.py
index 4d779b8..3f714c5 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 66f5024..5fcd18e 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)"),
]