@@ -53,7 +53,7 @@ def _find_executable(executable, path=None):
5353
5454
5555def _read_output (commandstring ):
56- """Output from succesful command execution or None"""
56+ """Output from successful command execution or None"""
5757 # Similar to os.popen(commandstring, "r").read(),
5858 # but without actually using os.popen because that
5959 # function is not usable during python bootstrap.
@@ -152,7 +152,7 @@ def _find_appropriate_compiler(_config_vars):
152152 # are not installed.
153153 #
154154 # Futhermore, the compiler that can be used varies between
155- # Xcode releases. Upto Xcode 4 it was possible to use 'gcc-4.2'
155+ # Xcode releases. Up to Xcode 4 it was possible to use 'gcc-4.2'
156156 # as the compiler, after that 'clang' should be used because
157157 # gcc-4.2 is either not present, or a copy of 'llvm-gcc' that
158158 # miscompiles Python.
@@ -192,7 +192,7 @@ def _find_appropriate_compiler(_config_vars):
192192
193193 if cc != oldcc :
194194 # Found a replacement compiler.
195- # Modify config vars using new compiler, if not already explictly
195+ # Modify config vars using new compiler, if not already explicitly
196196 # overriden by an env variable, preserving additional arguments.
197197 for cv in _COMPILER_CONFIG_VARS :
198198 if cv in _config_vars and cv not in os .environ :
@@ -274,7 +274,7 @@ def _check_for_unavailable_sdk(_config_vars):
274274 # compile an extension using an SDK that is not present
275275 # on the current machine it is better to not use an SDK
276276 # than to fail. This is particularly important with
277- # the standalong Command Line Tools alternative to a
277+ # the standalone Command Line Tools alternative to a
278278 # full-blown Xcode install since the CLT packages do not
279279 # provide SDKs. If the SDK is not present, it is assumed
280280 # that the header files and dev libs have been installed
@@ -378,7 +378,7 @@ def customize_config_vars(_config_vars):
378378 compilers are present, i.e. when installing pure
379379 Python dists. Customization of compiler paths
380380 and detection of unavailable archs is deferred
381- until the first extention module build is
381+ until the first extension module build is
382382 requested (in distutils.sysconfig.customize_compiler).
383383
384384 Currently called from distutils.sysconfig
0 commit comments