diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2013-08-18 11:16:06 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2013-08-18 11:20:45 -0600 |
commit | 8ddb0ce0acafe75d78df528b4d2540dfbf4b364d (patch) | |
tree | 156b23f48f14c7c1df699874007c521b5482d1a4 /tools | |
parent | 13b0b272f764c14bc4ac34f5b19fd030d9c611a4 (diff) | |
download | numpy-8ddb0ce0acafe75d78df528b4d2540dfbf4b364d.tar.gz |
STY: Giant whitespace cleanup.
Now is as good a time as any with open PR's at a low.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/c_coverage/HOWTO_C_COVERAGE.txt | 1 | ||||
-rw-r--r-- | tools/commitstats.py | 7 | ||||
-rw-r--r-- | tools/win32build/doall.py | 4 |
3 files changed, 4 insertions, 8 deletions
diff --git a/tools/c_coverage/HOWTO_C_COVERAGE.txt b/tools/c_coverage/HOWTO_C_COVERAGE.txt index aa4737a3f..320d9b0de 100644 --- a/tools/c_coverage/HOWTO_C_COVERAGE.txt +++ b/tools/c_coverage/HOWTO_C_COVERAGE.txt @@ -115,4 +115,3 @@ removing lines because they are tautologically impossible or to combine lines together. Compiling Numpy without optimizations helps, but not completely. Even despite this flaw, this tool is still helpful in identifying large missed blocks or functions. - diff --git a/tools/commitstats.py b/tools/commitstats.py index a3de1a6c5..775518d9b 100644 --- a/tools/commitstats.py +++ b/tools/commitstats.py @@ -14,7 +14,7 @@ def get_count(filename, repo): u = np.unique(result) count = [(x,result.count(x),repo) for x in u] return count - + command = 'svn log -l 2300 > output.txt' os.chdir('..') @@ -33,12 +33,9 @@ os.system(command) count.extend(get_count('output.txt', 'SciKits')) count.sort() - + print("** SciPy and NumPy **") print("=====================") for val in count: print(val) - - - diff --git a/tools/win32build/doall.py b/tools/win32build/doall.py index fbc794db5..0bf77306e 100644 --- a/tools/win32build/doall.py +++ b/tools/win32build/doall.py @@ -19,9 +19,9 @@ if __name__ == '__main__': subprocess.check_call(['python', 'prepare_bootstrap.py', '-p', pyver]) # Build binaries - subprocess.check_call(['python', 'build.py', '-p', pyver], + subprocess.check_call(['python', 'build.py', '-p', pyver], cwd = 'bootstrap-%s' % pyver) # Build installer using nsis - subprocess.check_call(['makensis', 'numpy-superinstaller.nsi'], + subprocess.check_call(['makensis', 'numpy-superinstaller.nsi'], cwd = 'bootstrap-%s' % pyver) |