[Python-checkins] cpython (3.2): Fix typo (was build) and remove redundancy in docstring

eric.araujo python-checkins at python.org
Fri Sep 2 17:45:25 CEST 2011


http://hg.python.org/cpython/rev/941106bcd327
changeset:   72191:941106bcd327
branch:      3.2
parent:      72189:58dd7addef3a
user:        Éric Araujo <merwok at netwok.org>
date:        Thu Sep 01 23:37:56 2011 +0200
summary:
  Fix typo (was build) and remove redundancy in docstring

files:
  Lib/distutils/tests/support.py |  7 +++----
  1 files changed, 3 insertions(+), 4 deletions(-)


diff --git a/Lib/distutils/tests/support.py b/Lib/distutils/tests/support.py
--- a/Lib/distutils/tests/support.py
+++ b/Lib/distutils/tests/support.py
@@ -175,10 +175,9 @@
 def fixup_build_ext(cmd):
     """Function needed to make build_ext tests pass.
 
-    When Python was build with --enable-shared on Unix, -L. is not good
-    enough to find the libpython<blah>.so.  This is because regrtest runs
-    it under a tempdir, not in the top level where the .so lives.  By the
-    time we've gotten here, Python's already been chdir'd to the tempdir.
+    When Python was built with --enable-shared on Unix, -L. is not enough to
+    find libpython<blah>.so, because regrtest runs in a tempdir, not in the
+    source directory where the .so lives.
 
     When Python was built with in debug mode on Windows, build_ext commands
     need their debug attribute set, and it is not done automatically for

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list