]> granicus.if.org Git - python/commitdiff
Typo fix.
authorGreg Ward <gward@python.net>
Wed, 6 Sep 2000 02:06:27 +0000 (02:06 +0000)
committerGreg Ward <gward@python.net>
Wed, 6 Sep 2000 02:06:27 +0000 (02:06 +0000)
Lib/distutils/command/build_ext.py
Lib/distutils/command/build_py.py

index 4d779b826450dc73774ab06fe9e3b16fcc3c37dc..3f714c54d8f8c48f8450fac40e5bc1ed92ed423c 100644 (file)
@@ -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"),
index 66f50241c172119408396c79b6749065186f67c5..5fcd18e788390e2ec2f4f375ab731e578aa1ae77 100644 (file)
@@ -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)"),
         ]