diff options
author | Jarrod Millman <millman@berkeley.edu> | 2008-12-31 23:25:03 +0000 |
---|---|---|
committer | Jarrod Millman <millman@berkeley.edu> | 2008-12-31 23:25:03 +0000 |
commit | 8c448a31743b9ea5bc18e06dfa42c078206ca529 (patch) | |
tree | ce25aed9f383011568653d7761918eeb11ba7dde /numpy/distutils/mingw32ccompiler.py | |
parent | 1bb5bb5529d78ba95e76c802544f8b6efa84ec33 (diff) | |
download | numpy-8c448a31743b9ea5bc18e06dfa42c078206ca529.tar.gz |
ran reindent
Diffstat (limited to 'numpy/distutils/mingw32ccompiler.py')
-rw-r--r-- | numpy/distutils/mingw32ccompiler.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/distutils/mingw32ccompiler.py b/numpy/distutils/mingw32ccompiler.py index 19cb22a1b..5975272b2 100644 --- a/numpy/distutils/mingw32ccompiler.py +++ b/numpy/distutils/mingw32ccompiler.py @@ -327,15 +327,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" |