summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/macosxSupport.py
Commit message (Collapse)AuthorAgeFilesLines
* Issue #25199: Idle: add synchronization comments for future maintainers.Terry Jan Reedy2015-09-211-0/+6
|
* Issue #16893: Replace help.txt with idle.html for Idle doc display.Terry Jan Reedy2015-09-201-3/+2
| | | | | | | | 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.
* Issue #13884: Idle: Remove tearoff lines from menus. Patch by Roger Serwy.Terry Jan Reedy2015-07-301-2/+3
|
* Issue #23184: idlelib, remove more unused names and imports.Terry Jan Reedy2015-05-161-3/+1
|
* Issue #3068: Add Idle extension configuration dialog to Options menu.Terry Jan Reedy2014-10-231-4/+2
| | | | Original patch by Tal Einat.
* Issue #17654: Ensure IDLE menus are customized properly on OS X forNed Deily2014-03-281-31/+91
| | | | non-framework builds and for all variants of Tk.
* Issue #14018: Update the OS X IDLE Tcl/Tk warning check to includeNed Deily2012-07-301-6/+10
| | | | | 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.
* #11565: Fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-161-2/+2
|
* Merged revisions 88003 via svnmerge fromNed Deily2011-01-301-0/+17
| | | | | | | | | | | | 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. ........
* Merged revisions 87394 via svnmerge fromNed Deily2011-01-181-30/+41
| | | | | | | | | | 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. ........
* Merged revisions 87119 via svnmerge fromRonald Oussoren2010-12-071-0/+5
| | | | | | | | | | 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. ........
* #7092: Fix additional "-3" warnings in the idlelib package, and convert to ↵Florent Xicluna2010-04-021-6/+6
| | | | absolute imports.
* Issue #6834: replace the implementation for the 'python' and 'pythonw' ↵Ronald Oussoren2009-12-241-1/+7
| | | | | | | | | | | | | | | | | 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.
* Typo.Guilherme Polo2009-08-051-1/+1
|
* Fixes issue 6110Ronald Oussoren2009-05-261-1/+2
|
* Fixes issues 3883 and 5194Ronald Oussoren2009-03-041-2/+6
|
* Fix for issue3559: No preferences menu in IDLE on OSXRonald Oussoren2009-01-021-1/+3
| | | | | | | | | | 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
* Tkinter rename reversal: remove tkinter package, adapt imports and docs.Georg Brandl2008-05-201-3/+3
|
* Tkinter rename, step 2: fix imports and add stub modules.Georg Brandl2008-05-161-3/+3
|
* Patch 1693258: Fix for duplicate "preferences" menu-OS XRonald Oussoren2007-07-091-18/+31
|
* Whitespace normalization.Tim Peters2006-07-241-4/+4
|
* Fix for bug #1517996: Class and Path browsers show Tk menuRonald Oussoren2006-07-231-0/+76
| | | | | 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.
* Add missing svn:eol-style property to text files.Tim Peters2006-06-111-36/+36
|
* Whitespace normalization.Tim Peters2006-06-111-36/+36
|
* This patch improves the L&F of IDLE on OSX. The changes are conditionalized onRonald Oussoren2006-06-111-0/+36
being in an IDLE.app bundle on darwin. This does a slight reorganisation of the menus and adds support for file-open events.