diff options
author | Dongjoon Hyun <dongjoon@apache.org> | 2016-02-21 11:33:41 -0800 |
---|---|---|
committer | Dongjoon Hyun <dongjoon@apache.org> | 2016-02-25 11:37:32 -0800 |
commit | 2556b9ff1ae621e311053bd5f2b34edb86a8cb68 (patch) | |
tree | ee25cd0a9f3d40a4292b342ce664f1c417d0deb2 /tools | |
parent | 89d95a0660ffd5890916edb78a6d4a9ccb5b3ad0 (diff) | |
download | numpy-2556b9ff1ae621e311053bd5f2b34edb86a8cb68.tar.gz |
DOC: Fix more typos in docs and comments.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/win32build/build.py | 4 | ||||
-rw-r--r-- | tools/win32build/prepare_bootstrap.py | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/tools/win32build/build.py b/tools/win32build/build.py index 782ef3d5e..7ae60fd96 100644 --- a/tools/win32build/build.py +++ b/tools/win32build/build.py @@ -1,7 +1,7 @@ """Python script to build windows binaries to be fed to the "superpack". The script is pretty dumb: it assumes python executables are installed the -standard way, and the location for blas/lapack/atlas is harcoded. +standard way, and the location for blas/lapack/atlas is hardcoded. TODO: - integrate the x86analysis script to check built binaries @@ -106,7 +106,7 @@ def get_binary_name(arch): def get_windist_exec(pyver): """Return the name of the installer built by wininst command.""" - # Yeah, the name logic is harcoded in distutils. We have to reproduce it + # Yeah, the name logic is hardcoded in distutils. We have to reproduce it # here if BUILD_MSI: ext = '.msi' diff --git a/tools/win32build/prepare_bootstrap.py b/tools/win32build/prepare_bootstrap.py index 3984032fd..acb127c23 100644 --- a/tools/win32build/prepare_bootstrap.py +++ b/tools/win32build/prepare_bootstrap.py @@ -9,7 +9,7 @@ import re def get_sdist_tarball(): """Return the name of the installer built by wininst command.""" - # Yeah, the name logic is harcoded in distutils. We have to reproduce it + # Yeah, the name logic is hardcoded in distutils. We have to reproduce it # here name = "numpy-%s.zip" % get_numpy_version() return name |