diff options
author | Guilherme Polo <ggpolo@gmail.com> | 2009-08-05 23:48:26 (GMT) |
---|---|---|
committer | Guilherme Polo <ggpolo@gmail.com> | 2009-08-05 23:48:26 (GMT) |
commit | 175e0bf8ca4934fd4f360cc403e209b671a162a9 (patch) | |
tree | 0eccc792b1d037ca7f634a5cc5618ed5153fb645 /Lib | |
parent | 3d75555b2bd6abdd705c36c9c3b3ddc87c43a59c (diff) | |
download | cpython-175e0bf8ca4934fd4f360cc403e209b671a162a9.zip cpython-175e0bf8ca4934fd4f360cc403e209b671a162a9.tar.gz cpython-175e0bf8ca4934fd4f360cc403e209b671a162a9.tar.bz2 |
Typo.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/idlelib/macosxSupport.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/macosxSupport.py b/Lib/idlelib/macosxSupport.py index bf472c2..8f86ca6 100644 --- a/Lib/idlelib/macosxSupport.py +++ b/Lib/idlelib/macosxSupport.py @@ -9,7 +9,7 @@ def runningAsOSXApp(): """ Returns True if Python is running from within an app on OSX. If so, assume that Python was built with Aqua Tcl/Tk rather than - X11 Tck/Tk. + X11 Tcl/Tk. """ return (sys.platform == 'darwin' and '.app' in sys.executable) |