summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiss Skeleton (bot) <31488909+miss-islington@users.noreply.github.com>2020-10-04 14:51:38 -0700
committerGitHub <noreply@github.com>2020-10-04 14:51:38 -0700
commitf3a6b7fc0b46afbe5d4d450b94a9d077e50b15d5 (patch)
treefebf22df87037ed5a38c67d357a5cdaa04ab496e
parent4b4d60f9287e0e52c2569876456f40efc11529b4 (diff)
downloadcpython-git-f3a6b7fc0b46afbe5d4d450b94a9d077e50b15d5.tar.gz
Typo fix (GH-22496)
Multiple typo fixes in code comments Automerge-Triggered-By: @Mariatta (cherry picked from commit 619f98045d73859688e5cfdb946d183e6d493a64) Co-authored-by: Manan Kumar Garg <62146744+MananKGarg@users.noreply.github.com>
-rw-r--r--setup.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/setup.py b/setup.py
index 770866bca7..0a6cd8ca2e 100644
--- a/setup.py
+++ b/setup.py
@@ -1882,9 +1882,9 @@ class PyBuildExt(build_ext):
# you want to build and link with a framework build of Tcl and Tk
# that is not in /Library/Frameworks, say, in your private
# $HOME/Library/Frameworks directory or elsewhere. It turns
- # out to be difficult to make that work automtically here
+ # out to be difficult to make that work automatically here
# without bringing into play more tools and magic. That case
- # can be hamdled using a recipe with the right arguments
+ # can be handled using a recipe with the right arguments
# to detect_tkinter_explicitly().
#
# Note also that the fallback case here is to try to use the
@@ -1892,7 +1892,7 @@ class PyBuildExt(build_ext):
# be forewarned that they are deprecated by Apple and typically
# out-of-date and buggy; their use should be avoided if at
# all possible by installing a newer version of Tcl and Tk in
- # /Library/Frameworks before bwfore building Python without
+ # /Library/Frameworks before building Python without
# an explicit SDK or by configuring build arguments explicitly.
from os.path import join, exists
@@ -1909,7 +1909,7 @@ class PyBuildExt(build_ext):
else:
# Use case #1: no explicit SDK selected.
# Search the local system-wide /Library/Frameworks,
- # not the one in the default SDK, othewise fall back to
+ # not the one in the default SDK, otherwise fall back to
# /System/Library/Frameworks whose header files may be in
# the default SDK or, on older systems, actually installed.
framework_dirs = [
@@ -1925,7 +1925,7 @@ class PyBuildExt(build_ext):
if not exists(join(F, fw + '.framework')):
break
else:
- # ok, F is now directory with both frameworks. Continure
+ # ok, F is now directory with both frameworks. Continue
# building
break
else: