History log of /external/python/cpython2/Lib/idlelib/macosxSupport.py
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
36443f19509aaf33d4205f78ab3f283bc715b50f 21-Sep-2015 Terry Jan Reedy <tjreedy@udel.edu> Issue #25199: Idle: add synchronization comments for future maintainers.
/external/python/cpython2/Lib/idlelib/macosxSupport.py
70e763c0d8f0dc00ca8bf190b299a9b61717a235 21-Sep-2015 Terry Jan Reedy <tjreedy@udel.edu> Issue #16893: Replace help.txt with idle.html for Idle doc display.
The new idlelib/idle.html is copied from Doc/build/html/idle.html.
It looks better than help.txt and will better document Idle as released.
The tkinter html viewer that works for this file was written by Rose Roseman.
The new code is in idlelib/help.py, a new file for help menu classes.
The now unused EditorWindow.HelpDialog class and helt.txt file are deprecated.
/external/python/cpython2/Lib/idlelib/macosxSupport.py
fa002d4cdd3a44a07252857ec7a55ed27fb15648 30-Jul-2015 Terry Jan Reedy <tjreedy@udel.edu> Issue #13884: Idle: Remove tearoff lines from menus. Patch by Roger Serwy.
/external/python/cpython2/Lib/idlelib/macosxSupport.py
2848925ed252769d5fcc4ee1ba91a250810b1b55 16-May-2015 Terry Jan Reedy <tjreedy@udel.edu> Issue #23184: idlelib, remove more unused names and imports.
/external/python/cpython2/Lib/idlelib/macosxSupport.py
7a16207ce129f3068c97b51bcdc0614199af60d5 23-Oct-2014 Terry Jan Reedy <tjreedy@udel.edu> Issue #3068: Add Idle extension configuration dialog to Options menu.
Original patch by Tal Einat.
/external/python/cpython2/Lib/idlelib/macosxSupport.py
57847df4e59015c141e645b47112829cf41b582a 28-Mar-2014 Ned Deily <nad@acm.org> Issue #17654: Ensure IDLE menus are customized properly on OS X for
non-framework builds and for all variants of Tk.
/external/python/cpython2/Lib/idlelib/macosxSupport.py
38df5142968a37fc74d59d458895f9a997c1de17 30-Jul-2012 Ned Deily <nad@acm.org> Issue #14018: Update the OS X IDLE Tcl/Tk warning check to include
the Apple-supplied Tck/Tk versions shipped with OS X 10.7 and 10.8.
They are not as buggy as the 10.6 version but can still easily crash.
/external/python/cpython2/Lib/idlelib/macosxSupport.py
c2077b0d9b5bf99768c6f396bf7ae6c41b682465 15-Mar-2011 Ezio Melotti <ezio.melotti@gmail.com> #11565: Fix several typos. Patch by Piotr Kasprzyk.
/external/python/cpython2/Lib/idlelib/macosxSupport.py
2a6f4b33271742f66a8e58a5ffd37e890e0acae3 30-Jan-2011 Ned Deily <nad@acm.org> Merged revisions 88003 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
r88003 | ned.deily | 2011-01-14 20:37:12 -0800 (Fri, 14 Jan 2011) | 5 lines

#10907: Warn OS X 10.6 IDLE users to use ActiveState Tcl/Tk 8.5,
rather than the currently problematic Apple-supplied one,
when running with the 64-/32-bit installer variant.
........
/external/python/cpython2/Lib/idlelib/macosxSupport.py
4a70550c1c3fb74985a2f4dd91a9a9cdb9e2fed6 18-Jan-2011 Ned Deily <nad@acm.org> Merged revisions 87394 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
r87394 | georg.brandl | 2010-12-19 02:10:32 -0800 (Sun, 19 Dec 2010) | 1 line

#6075: make idle work with both Carbon AquaTk and Cocoa AquaTk. Patch by Kevin Walzer and Ned Deily.
........
/external/python/cpython2/Lib/idlelib/macosxSupport.py
8ec374cc93aed86c270dd3729295748683744d19 07-Dec-2010 Ronald Oussoren <ronaldoussoren@mac.com> Merged revisions 87119 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
r87119 | ronald.oussoren | 2010-12-07 16:28:10 +0100 (Tue, 07 Dec 2010) | 2 lines

Fix for issue #10107: Without this patch IDLE on OSX doesn't warn about unsaved files when quitting.
........
/external/python/cpython2/Lib/idlelib/macosxSupport.py
d630c04ab1ab35e2ec6eeeaba9bdcb9f8e730e78 02-Apr-2010 Florent Xicluna <florent.xicluna@gmail.com> #7092: Fix additional "-3" warnings in the idlelib package, and convert to absolute imports.
/external/python/cpython2/Lib/idlelib/macosxSupport.py
92919a66d2bd4641a83edff4356805280d77a068 24-Dec-2009 Ronald Oussoren <ronaldoussoren@mac.com> Issue #6834: replace the implementation for the 'python' and 'pythonw' executables on OSX.

The previous implementation used execv(2) to run the real interpreter, which means that
you cannot use the arch(1) tool to select the architecture you want to use for a
universal build because that only affects the python/pythonw wrapper and not the actual
interpreter.

The new version uses posix_spawnv with a number of OSX-specific options that ensure that
the real interpreter is started using the same CPU architecture as the wrapper, and that
means that 'arch -ppc python' now actually works.

I've also changed the way that the wrapper looks for the framework: it is now linked to
the framework rather than hardcoding the framework path. This should make it easier to
provide pythonw support in tools like virtualenv.
/external/python/cpython2/Lib/idlelib/macosxSupport.py
175e0bf8ca4934fd4f360cc403e209b671a162a9 06-Aug-2009 Guilherme Polo <ggpolo@gmail.com> Typo.
/external/python/cpython2/Lib/idlelib/macosxSupport.py
55d8828f982d4b03ef25db61cf0b8b50f1d1cf76 26-May-2009 Ronald Oussoren <ronaldoussoren@mac.com> Fixes issue 6110
/external/python/cpython2/Lib/idlelib/macosxSupport.py
a97063a1086266e774586765b3c3e65ed2a4a1eb 04-Mar-2009 Ronald Oussoren <ronaldoussoren@mac.com> Fixes issues 3883 and 5194
/external/python/cpython2/Lib/idlelib/macosxSupport.py
8c95484cff12e96356f67d31e3fa5e5aa7dbd5ca 02-Jan-2009 Ronald Oussoren <ronaldoussoren@mac.com> Fix for issue3559: No preferences menu in IDLE on OSX

1) Add a comment to the help file to that points to the
preferences menu.

2) An earlier checkin tried to detect Tk >= 8.10.14,
but did this in the wrong way. The end result of this
was that the IDLE->Preferences... menu got surpressed
when using the system version of Tcl/Tk
/external/python/cpython2/Lib/idlelib/macosxSupport.py
6634bf2919d855ccd821e878b8cc00c7209f1cbe 20-May-2008 Georg Brandl <georg@python.org> Tkinter rename reversal: remove tkinter package, adapt imports and docs.
/external/python/cpython2/Lib/idlelib/macosxSupport.py
ad9afeb8f02db9a13d2ed8e45361ecbc0d19bd32 16-May-2008 Georg Brandl <georg@python.org> Tkinter rename, step 2: fix imports and add stub modules.
/external/python/cpython2/Lib/idlelib/macosxSupport.py
9b0bcc1f4b7aeb6eb2591aebf4688fa2ffe46f4d 09-Jul-2007 Ronald Oussoren <ronaldoussoren@mac.com> Patch 1693258: Fix for duplicate "preferences" menu-OS X
/external/python/cpython2/Lib/idlelib/macosxSupport.py
0bbfd832504565d6c2a19907424ed29bc2ff52c2 24-Jul-2006 Tim Peters <tim.peters@gmail.com> Whitespace normalization.
/external/python/cpython2/Lib/idlelib/macosxSupport.py
8133f9da1756adaee5548015528f8e2f0ff3f8d4 23-Jul-2006 Ronald Oussoren <ronaldoussoren@mac.com> Fix for bug #1517996: Class and Path browsers show Tk menu

This patch replaces the menubar that is used by AquaTk for windows without a
menubar of their own by one that is more appropriate for IDLE.
/external/python/cpython2/Lib/idlelib/macosxSupport.py
231c3c880457dfc09e29fad0254d3b5ebcb28625 11-Jun-2006 Tim Peters <tim.peters@gmail.com> Add missing svn:eol-style property to text files.
/external/python/cpython2/Lib/idlelib/macosxSupport.py
4f96f1f2b5068b8e8bd8d0f83f856b6e2883a3ab 11-Jun-2006 Tim Peters <tim.peters@gmail.com> Whitespace normalization.
/external/python/cpython2/Lib/idlelib/macosxSupport.py
19302d927e6688e02553df16177e4867e2d0e3b3 11-Jun-2006 Ronald Oussoren <ronaldoussoren@mac.com> This patch improves the L&F of IDLE on OSX. The changes are conditionalized on
being in an IDLE.app bundle on darwin. This does a slight reorganisation of the
menus and adds support for file-open events.
/external/python/cpython2/Lib/idlelib/macosxSupport.py