@@ -1881,17 +1881,17 @@ def detect_tkinter_darwin(self):
18811881 # you want to build and link with a framework build of Tcl and Tk
18821882 # that is not in /Library/Frameworks, say, in your private
18831883 # $HOME/Library/Frameworks directory or elsewhere. It turns
1884- # out to be difficult to make that work automtically here
1884+ # out to be difficult to make that work automatically here
18851885 # without bringing into play more tools and magic. That case
1886- # can be hamdled using a recipe with the right arguments
1886+ # can be handled using a recipe with the right arguments
18871887 # to detect_tkinter_explicitly().
18881888 #
18891889 # Note also that the fallback case here is to try to use the
18901890 # Apple-supplied Tcl and Tk frameworks in /System/Library but
18911891 # be forewarned that they are deprecated by Apple and typically
18921892 # out-of-date and buggy; their use should be avoided if at
18931893 # all possible by installing a newer version of Tcl and Tk in
1894- # /Library/Frameworks before bwfore building Python without
1894+ # /Library/Frameworks before building Python without
18951895 # an explicit SDK or by configuring build arguments explicitly.
18961896
18971897 from os .path import join , exists
@@ -1908,7 +1908,7 @@ def detect_tkinter_darwin(self):
19081908 else :
19091909 # Use case #1: no explicit SDK selected.
19101910 # Search the local system-wide /Library/Frameworks,
1911- # not the one in the default SDK, othewise fall back to
1911+ # not the one in the default SDK, otherwise fall back to
19121912 # /System/Library/Frameworks whose header files may be in
19131913 # the default SDK or, on older systems, actually installed.
19141914 framework_dirs = [
@@ -1924,7 +1924,7 @@ def detect_tkinter_darwin(self):
19241924 if not exists (join (F , fw + '.framework' )):
19251925 break
19261926 else :
1927- # ok, F is now directory with both frameworks. Continure
1927+ # ok, F is now directory with both frameworks. Continue
19281928 # building
19291929 break
19301930 else :
0 commit comments