summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/EditorWindow.py
Commit message (Collapse)AuthorAgeFilesLines
* #13495: merge with 3.3.Roger Serwy2013-05-061-3/+0
|\
| * #13495: Avoid loading the color delegator twice in IDLE.Roger Serwy2013-05-061-3/+0
| |
* | #17798: merge with 3.3.Roger Serwy2013-05-051-0/+2
|\ \ | |/
| * #17798: Allow IDLE to edit new files when specified on command line.Roger Serwy2013-05-051-0/+2
| |
* | #1207589: merge with 3.3.Roger Serwy2013-04-071-2/+8
|\ \ | |/
| * #1207589: Backwards-compatibility patch for right-click menu in IDLE.Roger Serwy2013-04-071-2/+8
| |
* | #16887: merge with 3.3.Roger Serwy2013-04-071-1/+3
|\ \ | |/
| * #16887: IDLE now accepts Cancel in tabify/untabify dialog box.Roger Serwy2013-04-071-1/+3
| |
* | Issue #16504: Catch SyntaxErrors raised by tokenizer in IDLE.Serhiy Storchaka2012-12-271-1/+1
|\ \ | |/ | | | | Patch by Roger Serwy.
| * Issue #16504: Catch SyntaxErrors raised by tokenizer in IDLE.Serhiy Storchaka2012-12-271-1/+1
| |\ | | | | | | | | | Patch by Roger Serwy.
| | * Issue #16504: Catch SyntaxErrors raised by tokenizer in IDLE.Serhiy Storchaka2012-12-271-1/+1
| | | | | | | | | | | | Patch by Roger Serwy.
* | | Replace IOError with OSError (#16715)Andrew Svetlov2012-12-251-1/+1
| | |
* | | Issue #16511: Use default IDLE width and height if config param is not valid.Andrew Svetlov2012-12-241-7/+14
|\ \ \ | |/ / | | | | | | Patch Serhiy Storchaka.
| * | Issue #16511: Use default IDLE width and height if config param is not valid.Andrew Svetlov2012-12-241-7/+14
| |\ \ | | |/ | | | | | | Patch Serhiy Storchaka.
| | * Issue #16511: Use default IDLE width and height if config param is not valid.Andrew Svetlov2012-12-241-7/+14
| | | | | | | | | | | | Patch Serhiy Storchaka.
* | | Issue #16719: Get rid of WindowsError. Use OSError insteadAndrew Svetlov2012-12-191-2/+2
|/ / | | | | | | Patch by Serhiy Storchaka.
* | Merge issue #1207589: Add Cut/Copy/Paste items to IDLE right click Context MenuAndrew Svetlov2012-11-011-7/+36
|\ \ | |/ | | | | Patch by Todd Rovito.
| * Issue #1207589: Add Cut/Copy/Paste items to IDLE right click Context MenuAndrew Svetlov2012-11-011-7/+36
| | | | | | | | Patch by Todd Rovito.
* | Issue #10997: merge from 3.2Ned Deily2012-05-291-1/+1
|\ \ | |/
| * Issue #10997: Prevent a duplicate entry in IDLE's "Recent Files" menu.Ned Deily2012-05-291-1/+1
| |
* | Implemented PEP 405 (Python virtual environments).Vinay Sajip2012-05-261-3/+3
| |
* | Include micro version even if it is 0.Martin v. Löwis2012-05-011-2/+1
| |
* | IDLE was relying on implicit relative imports which have gone away inBrett Cannon2012-04-151-3/+7
|/ | | | | Python 3.3 thanks to importlib finishing the work in PEP 328 that accidently got carried forward.
* Issue 964437 Make IDLE help window non-modal.Terry Jan Reedy2012-02-051-2/+49
| | | | Patch by Guilherme Polo and Roger Serwy.
* #13039 allow proper deletion of '>>> ' in IDLE editor windows.Terry Jan Reedy2012-01-161-1/+4
| | | | Patch by Roger Serwy.
* Issue #4625: If IDLE cannot write to its recent file or breakpointNed Deily2011-12-141-5/+10
| | | | | files, display a message popup and continue rather than crash. (original patch by Roger Serwy)
* Fix nit.Raymond Hettinger2011-04-131-1/+1
|
* Issue 11718: Teach IDLE's open module dialog to find packages.Raymond Hettinger2011-04-131-0/+11
|
* Merge from 3.1Kurt B. Kaiser2011-03-261-12/+9
|\
| * <Home> toggle failing on Tk 8.5, causing IDLE exits. Issue #4676Kurt B. Kaiser2011-03-261-12/+9
| |
* | Merge from 3.1Kurt B. Kaiser2011-03-221-3/+3
|\ \ | |/
| * <Home> toggle non-functional when NumLock setKurt B. Kaiser2011-03-211-3/+3
| | | | | | | | on Windows. Issue3851.
* | #11515: Merge with 3.1.Ezio Melotti2011-03-151-2/+2
|\ \ | |/
| * #11515: fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-151-2/+2
| |
| * Merged revisions 88174 via svnmerge fromNed Deily2011-01-241-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r88174 | ned.deily | 2011-01-24 13:46:44 -0800 (Mon, 24 Jan 2011) | 6 lines #10974: IDLE no longer crashes if its recent files list includes files with non-ASCII characters in their path names. (with approval of release manager for 3.2rc2) ........
| * Issue 6285: catch missing IDLE help file.Terry Reedy2011-01-011-3/+11
| |
| * Merged revisions 87374 via svnmerge fromR. David Murray2010-12-181-1/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r87374 | r.david.murray | 2010-12-18 12:19:10 -0500 (Sat, 18 Dec 2010) | 8 lines #10404: Use ctl-button-1 for context menus on OSX Idle. This provides access to the context menus where they previously could not be accessed due to the way OSX Tk binds buttons. It also improves platform consistency. Patch by Ned Deily. ........
* | Issue #10940: Workaround an IDLE hang on Mac OS X 10.6 when using theNed Deily2011-01-291-1/+6
| | | | | | | | | | menu accelerators for Open Module, Go to Line, and New Indent Width. The accelerators still work but no longer appear in the menu items.
* | #10974: IDLE no longer crashes if its recent files list includes filesNed Deily2011-01-241-2/+4
| | | | | | | | | | | | with non-ASCII characters in their path names. (with approval of release manager for 3.2rc2)
* | Issue 6285: catch missing IDLE help file.Terry Reedy2011-01-011-3/+11
| |
* | #6075: make idle work with both Carbon AquaTk and Cocoa AquaTk. Patch by ↵Georg Brandl2010-12-191-1/+1
| | | | | | | | Kevin Walzer and Ned Deily.
* | #10404: Use ctl-button-1 for context menus on OSX Idle.R. David Murray2010-12-181-1/+8
| | | | | | | | | | | | | | | | This provides access to the context menus where they previously could not be accessed due to the way OSX Tk binds buttons. It also improves platform consistency. Patch by Ned Deily.
* | Merged revisions 74446-74449 via svnmerge fromGuilherme Polo2009-08-141-3/+2
|/ | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev/python/trunk ........ r74446 | guilherme.polo | 2009-08-14 10:53:41 -0300 (Fri, 14 Aug 2009) | 1 line Issue #3344: Replace itertools.count by enumerate. ........ r74447 | guilherme.polo | 2009-08-14 11:03:07 -0300 (Fri, 14 Aug 2009) | 1 line Issue #3926: Fix the usage of the new showwarnings and formatwarning. ........ r74448 | guilherme.polo | 2009-08-14 11:36:45 -0300 (Fri, 14 Aug 2009) | 3 lines Issue #1135: Add the XView and YView mix-ins to avoid duplicating the xview* and yview* methods. ........ r74449 | guilherme.polo | 2009-08-14 11:43:43 -0300 (Fri, 14 Aug 2009) | 1 line Clarifying Entry.selection_present's docstring. ........
* Merged revisions 73415,73417-73418 via svnmerge fromBenjamin Peterson2009-06-221-2/+4
| | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r73415 | benjamin.peterson | 2009-06-13 09:25:08 -0500 (Sat, 13 Jun 2009) | 1 line use 'rc' for release candidates for consistency ........ r73417 | benjamin.peterson | 2009-06-13 10:42:23 -0500 (Sat, 13 Jun 2009) | 1 line special case release candidates ........ r73418 | benjamin.peterson | 2009-06-13 10:48:04 -0500 (Sat, 13 Jun 2009) | 1 line handle different rc format ........
* Merged revisions 71812 via svnmerge fromKurt B. Kaiser2009-04-261-3/+11
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r71812 | kurt.kaiser | 2009-04-22 22:36:01 -0400 (Wed, 22 Apr 2009) | 2 lines Produce correct version string to access the .chm docs on Windows. Patch 5783 gpolo. Will port. ........
* Merged revisions 70723 via svnmerge fromKurt B. Kaiser2009-04-041-4/+12
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r70723 | kurt.kaiser | 2009-03-30 12:22:00 -0400 (Mon, 30 Mar 2009) | 1 line Tk 8.5 Text widget requires 'wordprocessor' tabstyle attr to handle mixed space/tab properly. Issue 5120, patch by Guilherme Polo. ........
* Fix for issue5194, based on a patch by Ned Deily.Ronald Oussoren2009-02-121-1/+1
|
* Merged revisions 68797,68801 via svnmerge fromBenjamin Peterson2009-01-201-1/+1
| | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r68797 | raymond.hettinger | 2009-01-20 01:11:47 -0600 (Tue, 20 Jan 2009) | 11 lines Don't disrupt automatic url target name generation with manually specified, conflicting names. Before: http://docs.python.org/dev/library/collections.html#id1 After: http://docs.python.org/dev/library/collections.html#counter-objects ........ r68801 | raymond.hettinger | 2009-01-20 04:46:23 -0600 (Tue, 20 Jan 2009) | 5 lines Use Georg's new permalinks to documentation by version number. That assures that IDLE's help always points to the correct version and the latest update with all bug fixes. ........
* xrange -> range.Georg Brandl2008-07-191-1/+1
|
* Fixed old Tkinter import, the last apparentlyGuilherme Polo2008-05-251-1/+1
|