diff options
author | David Cournapeau <cournape@gmail.com> | 2008-12-19 09:48:01 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2008-12-19 09:48:01 +0000 |
commit | 94e3d100720ba4fd150d9fb1993838377eb8c243 (patch) | |
tree | 4d145ce7b7b63a20ecc199353f32f7371b176e6a /numpy/distutils | |
parent | 6c348211147ae411e00e7bfc452c105dd15c6a51 (diff) | |
download | numpy-94e3d100720ba4fd150d9fb1993838377eb8c243.tar.gz |
Trailing spaces.
Diffstat (limited to 'numpy/distutils')
-rw-r--r-- | numpy/distutils/mingw32ccompiler.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/numpy/distutils/mingw32ccompiler.py b/numpy/distutils/mingw32ccompiler.py index 4280ea0e5..b7550de64 100644 --- a/numpy/distutils/mingw32ccompiler.py +++ b/numpy/distutils/mingw32ccompiler.py @@ -200,7 +200,7 @@ def find_python_dll(): dllname = 'python%d%d.dll' % (maj, min) print "Looking for %s" % dllname - # We can't do much here: + # We can't do much here: # - find it in python main dir # - in system32, # - ortherwise (Sxs), I don't know how to get it. @@ -405,15 +405,15 @@ def check_embedded_msvcr_match_linked(msver): def configtest_name(config): base = os.path.basename(config._gen_temp_sourcefile("yo", [], "c")) return os.path.splitext(base)[0] - + def manifest_name(config): - # Get configest name (including suffix) + # Get configest name (including suffix) root = configtest_name(config) exext = config.compiler.exe_extension return root + exext + ".manifest" def rc_name(config): - # Get configest name (including suffix) + # Get configest name (including suffix) root = configtest_name(config) return root + ".rc" |