[Python-checkins] r41848 - python/trunk/setup.py

skip.montanaro python-checkins at python.org
Wed Jan 4 09:28:07 CET 2006


Author: skip.montanaro
Date: Fri Dec 30 06:01:26 2005
New Revision: 41848

Modified:
   python/trunk/setup.py
Log:
typo, use parens for continued expr

Modified: python/trunk/setup.py
==============================================================================
--- python/trunk/setup.py	(original)
+++ python/trunk/setup.py	Fri Dec 30 06:01:26 2005
@@ -1000,7 +1000,7 @@
             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.
         # XXX distutils should support -F!
         for F in framework_dirs:
@@ -1051,8 +1051,8 @@
         # AquaTk is a separate method. Only one Tkinter will be built on
         # Darwin - either AquaTk, if it is found, or X11 based Tk.
         platform = self.get_platform()
-        if platform == 'darwin' and \
-           self.detect_tkinter_darwin(inc_dirs, lib_dirs):
+        if (platform == 'darwin' and
+            self.detect_tkinter_darwin(inc_dirs, lib_dirs)):
             return
 
         # Assume we haven't found any of the libraries or include files


More information about the Python-checkins mailing list