mirror of
https://github.com/python/cpython.git
synced 2025-10-18 04:38:07 +00:00
typo, use parens for continued expr
This commit is contained in:
parent
24f0fa97c5
commit
0174dddc65
1 changed files with 3 additions and 3 deletions
6
setup.py
6
setup.py
|
@ -1000,7 +1000,7 @@ class PyBuildExt(build_ext):
|
||||||
join(os.getenv('HOME'), '/Library/Frameworks')
|
join(os.getenv('HOME'), '/Library/Frameworks')
|
||||||
]
|
]
|
||||||
|
|
||||||
# Find the directory that contains the Tcl.framwork and Tk.framework
|
# Find the directory that contains the Tcl.framework and Tk.framework
|
||||||
# bundles.
|
# bundles.
|
||||||
# XXX distutils should support -F!
|
# XXX distutils should support -F!
|
||||||
for F in framework_dirs:
|
for F in framework_dirs:
|
||||||
|
@ -1051,8 +1051,8 @@ class PyBuildExt(build_ext):
|
||||||
# AquaTk is a separate method. Only one Tkinter will be built on
|
# AquaTk is a separate method. Only one Tkinter will be built on
|
||||||
# Darwin - either AquaTk, if it is found, or X11 based Tk.
|
# Darwin - either AquaTk, if it is found, or X11 based Tk.
|
||||||
platform = self.get_platform()
|
platform = self.get_platform()
|
||||||
if platform == 'darwin' and \
|
if (platform == 'darwin' and
|
||||||
self.detect_tkinter_darwin(inc_dirs, lib_dirs):
|
self.detect_tkinter_darwin(inc_dirs, lib_dirs)):
|
||||||
return
|
return
|
||||||
|
|
||||||
# Assume we haven't found any of the libraries or include files
|
# Assume we haven't found any of the libraries or include files
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue