summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/EditorWindow.py
Commit message (Collapse)AuthorAgeFilesLines
* Issue #25523: Correct "a" article to "an" articleMartin Panter2015-11-021-1/+1
| | | | | | This changes the main documentation, doc strings, source code comments, and a couple error messages in the test suite. In some cases the word was removed to fix the grammar.
* Issue #24750: Improve appearance of IDLE editor window status bar.Terry Jan Reedy2015-11-161-0/+3
| | | | Patch by Mark Roseman.
* Issue #25313: Change the handling of new built-in text color themes to betterTerry Jan Reedy2015-11-121-1/+1
| | | | | address the compatibility problem introduced by the addition of IDLE Dark. Consistently use the revised idleConf.CurrentTheme everywhere in idlelib.
* Display IDLE warning as a warning rather than as an error.Terry Jan Reedy2015-10-271-2/+4
| | | | Clarify message and expected action for beginners.
* Issue #24782: Finish converting the Configure Extension dialog into a newTerry Jan Reedy2015-10-141-6/+0
| | | | tab in the IDLE Preferences dialog. Code patch by Mark Roseman.
* Issue #24972: New option is only valid in tk 8.5+.Terry Jan Reedy2015-09-281-1/+3
|
* Issue #24972: Inactive selection background now matches active selectionTerry Jan Reedy2015-09-281-30/+1
| | | | | | background, as selected by user, on all systems. This also fixes a problem with found items not highlighted on Windows. Initial patch by Mark Roseman. Fix replaces workaround with obscure but proper configuration option.
* Issue #16893: Move idlelib.EditorWindow.HelpDialog deprecation warningTerry Jan Reedy2015-09-231-5/+5
| | | | | | so it is not triggered on import. The problem is creation of a now-unused instance "helpDialog = HelpDialog()", left for back compatibility. So instead trigger the warning when that instance or another is used.
* Issue #24570: Right-click for context menus now work on Mac Aqual also.Terry Jan Reedy2015-09-231-5/+5
| | | | Patch by Mark Roseman.
* Issue #16893: finish deprecation.Terry Jan Reedy2015-09-211-3/+1
|
* Issue #25199: Idle: add synchronization comments for future maintainers.Terry Jan Reedy2015-09-211-2/+8
|
* Issue #16893: Replace help.txt with idle.html for Idle doc display.Terry Jan Reedy2015-09-201-2/+10
| | | | | | | | 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 24745: Switch from Courier to platform-sensitive TkFixedFont as defaultTerry Jan Reedy2015-08-011-14/+3
| | | | | editor font. This should not affect current customized font selections. Patch by Mark Roseman.
* Issue #13884: Idle: Remove tearoff lines from menus. Patch by Roger Serwy.Terry Jan Reedy2015-07-301-3/+4
|
* Issue #23184: idlelib, remove more unused names and imports.Terry Jan Reedy2015-05-161-2/+0
|
* Issue #23180: Rename IDLE "Windows" menu item to "Window".Ned Deily2015-01-181-4/+1
| | | | Patch by Al Sweigart.
* Issue #3068: Add Idle extension configuration dialog to Options menu.Terry Jan Reedy2014-10-231-0/+4
| | | | Original patch by Tal Einat.
* Issue #22629: Revise idle_test.htest, mostly docstring. Start revision ofTerry Jan Reedy2014-10-171-2/+4
| | | | htests to add # htest # marker for coveragepy and stop tcl errors.
* Issue #16233: When the module browser is not invoked in an editor window withTerry Jan Reedy2014-10-161-11/+10
| | | | | a filename, pop up the Open Module box. If a module is opened, open a corresponding browser.
* De-'colour'ize stdlib except for idlelib.configDialog.Terry Jan Reedy2014-10-091-1/+1
| | | | Tweak docstrigs and comments in affected functions in idlelib.configHandler.
* Update Idle's online doc url.Terry Jan Reedy2014-09-201-1/+1
|
* Issue #17390: Adjust Editor window title. Remove 'Python', move version to end.Terry Jan Reedy2014-08-151-4/+5
|
* Issue #21477: Idle htest: modify run; add more tests.Terry Jan Reedy2014-05-271-6/+4
| | | | Patch by Saimadhav Heblikar. 2.7 backport of 90829, d7eea8f608c2.
* Issue #21477: idle htests - lower case function names, other cleanups.Terry Jan Reedy2014-05-191-7/+7
|
* Issue #18104: Add idlelib/idle_test/htest.py with a few sample tests to beginTerry Jan Reedy2014-05-121-5/+9
| | | | | consolidating and improving human-validated tests of Idle. Change other files as needed to work with htest. Running the module as __main__ runs all tests.
* Issue #17654: Ensure IDLE menus are customized properly on OS X forNed Deily2014-03-281-7/+7
| | | | non-framework builds and for all variants of Tk.
* Issue #17390: Add Python version to Idle editor window title bar.Terry Jan Reedy2014-01-231-1/+5
| | | | Original patches by Edmond Burnett and Kent Johnson.
* Issue #18151: Replace remaining Idle 'open...close' pairs with 'with open'.Terry Jan Reedy2013-08-041-4/+1
|
* Issue #17532: Prevent exception when changing key sets if Options menu is empty.Ned Deily2013-07-201-1/+5
|
* Issue #18316: Update idlelib 2.7 except clauses to ease backports.Terry Jan Reedy2013-06-291-1/+1
|
* Issue #17532: Always include Options menu for IDLE on OS X.Ned Deily2013-05-221-1/+0
| | | | Patch by Guilherme Simões.
* #14146: Highlight source line while debugging on Windows.Roger Serwy2013-05-211-0/+30
|
* #1207589: Backwards-compatibility patch for right-click menu in IDLE.Roger Serwy2013-04-071-2/+8
|
* #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
|
* Issue #16511: Use default IDLE width and height if config param is not valid.Andrew Svetlov2012-12-241-4/+6
| | | | Patch Serhiy Storchaka.
* Issue #1207589: Add Cut/Copy/Paste items to IDLE right click Context MenuAndrew Svetlov2012-11-011-7/+35
| | | | Patch by Todd Rovito.
* Issue #10997: Prevent a duplicate entry in IDLE's "Recent Files" menu.Ned Deily2012-05-291-1/+1
|
* 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-4/+9
| | | | | files, display a message popup and continue rather than crash. (original patch by Roger Serwy)
* Issue 11718: Teach IDLE's open module dialog to find packages.Raymond Hettinger2011-04-131-0/+15
|
* <Home> toggle failing on Tk 8.5, causing IDLE exits. Issue 3851.Kurt B. Kaiser2011-03-251-12/+9
|
* <Home> toggle non-functional when NumLock set.Kurt B. Kaiser2011-03-171-3/+3
| | | | Issue3851
* #11515: fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-151-2/+2
|
* Merged revisions 88232 via svnmerge fromNed Deily2011-01-311-1/+6
| | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r88232 | ned.deily | 2011-01-29 10:29:01 -0800 (Sat, 29 Jan 2011) | 5 lines Issue #10940: Workaround an IDLE hang on Mac OS X 10.6 when using the menu accelerators for Open Module, Go to Line, and New Indent Width. The accelerators still work but no longer appear in the menu items. ........
* Merged revisions 87394 via svnmerge fromNed Deily2011-01-181-1/+1
| | | | | | | | | | 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. ........
* Issue 6285: catch missing IDLE help file. Backport from 3.2.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. ........
* #7092: silence some py3k warningsFlorent Xicluna2010-04-021-1/+1
|