diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-06-02 10:07:09 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-06-02 10:07:09 (GMT) |
commit | e26da7c03a714faa115fe6b708ef0730119aa4b3 (patch) | |
tree | 26d6a9584ddde0d84f1011fe87662b3b84a39428 /Lib/_osx_support.py | |
parent | 1b207c55a446ab8b8bae2efc8407ee130ba62012 (diff) | |
download | cpython-e26da7c03a714faa115fe6b708ef0730119aa4b3.zip cpython-e26da7c03a714faa115fe6b708ef0730119aa4b3.tar.gz cpython-e26da7c03a714faa115fe6b708ef0730119aa4b3.tar.bz2 |
Issue #27171: Fix typos in documentation, comments, and test function names
Diffstat (limited to 'Lib/_osx_support.py')
-rw-r--r-- | Lib/_osx_support.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Lib/_osx_support.py b/Lib/_osx_support.py index 58e20cd..13fcd8b 100644 --- a/Lib/_osx_support.py +++ b/Lib/_osx_support.py @@ -157,7 +157,7 @@ def _find_appropriate_compiler(_config_vars): # gcc-4.2 is either not present, or a copy of 'llvm-gcc' that # miscompiles Python. - # skip checks if the compiler was overriden with a CC env variable + # skip checks if the compiler was overridden with a CC env variable if 'CC' in os.environ: return _config_vars @@ -193,7 +193,7 @@ def _find_appropriate_compiler(_config_vars): if cc != oldcc: # Found a replacement compiler. # Modify config vars using new compiler, if not already explicitly - # overriden by an env variable, preserving additional arguments. + # overridden by an env variable, preserving additional arguments. for cv in _COMPILER_CONFIG_VARS: if cv in _config_vars and cv not in os.environ: cv_split = _config_vars[cv].split() @@ -207,7 +207,7 @@ def _remove_universal_flags(_config_vars): """Remove all universal build arguments from config vars""" for cv in _UNIVERSAL_CONFIG_VARS: - # Do not alter a config var explicitly overriden by env var + # Do not alter a config var explicitly overridden by env var if cv in _config_vars and cv not in os.environ: flags = _config_vars[cv] flags = re.sub('-arch\s+\w+\s', ' ', flags, re.ASCII) @@ -228,7 +228,7 @@ def _remove_unsupported_archs(_config_vars): # build extensions on OSX 10.7 and later with the prebuilt # 32-bit installer on the python.org website. - # skip checks if the compiler was overriden with a CC env variable + # skip checks if the compiler was overridden with a CC env variable if 'CC' in os.environ: return _config_vars @@ -244,7 +244,7 @@ def _remove_unsupported_archs(_config_vars): # across Xcode and compiler versions, there is no reliable way # to be sure why it failed. Assume here it was due to lack of # PPC support and remove the related '-arch' flags from each - # config variables not explicitly overriden by an environment + # config variables not explicitly overridden by an environment # variable. If the error was for some other reason, we hope the # failure will show up again when trying to compile an extension # module. @@ -292,7 +292,7 @@ def _check_for_unavailable_sdk(_config_vars): sdk = m.group(1) if not os.path.exists(sdk): for cv in _UNIVERSAL_CONFIG_VARS: - # Do not alter a config var explicitly overriden by env var + # Do not alter a config var explicitly overridden by env var if cv in _config_vars and cv not in os.environ: flags = _config_vars[cv] flags = re.sub(r'-isysroot\s+\S+(?:\s|$)', ' ', flags) |