summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib
Commit message (Collapse)AuthorAgeFilesLines
* make idlever.py self-updating (closes #24199)Benjamin Peterson2015-05-221-1/+4
|
* bump version to 2.7.10rc1v2.7.10rc1Benjamin Peterson2015-05-101-1/+1
|
* Issue #17202: Add .bat to .hgeol to force them to CRLF.Zachary Ware2015-04-131-4/+4
| | | | | Using LF can a script to fail if it tries to use a label that is split across 512 byte blocks. Who knows why.
* Issue #23825: Fixed test_idle under -OO.Serhiy Storchaka2015-04-041-7/+12
|
* Escaped backslashes in docstrings.Serhiy Storchaka2015-04-031-1/+1
|
* Issue #23583: Fixed writing unicode to standard output stream in IDLE.Serhiy Storchaka2015-03-242-1/+268
| | | | Added tests for standard IO streams in IDLE.
* Issue #23180: Rename IDLE "Windows" menu item to "Window".Ned Deily2015-01-183-9/+3
| | | | Patch by Al Sweigart.
* Issue #23184: delete unused idlelib file.Terry Jan Reedy2015-01-081-31/+0
|
* Issue #20577: move configuration of FormatParagraph extension to new extensionTerry Jan Reedy2014-12-164-24/+5
| | | | configuration dialog. Patch by Tal Einat.
* Issue 22823: Use set literal in idlelib.Terry Jan Reedy2014-12-111-2/+2
|
* bump to 2.7.9 finalv2.7.9Benjamin Peterson2014-12-101-1/+1
|
* sync idle news from 2.7 branchBenjamin Peterson2014-12-061-0/+32
|
* 2.7.9rc1v2.7.9rc1Benjamin Peterson2014-11-261-1/+1
|
* Issue #3068: Add Idle extension configuration dialog to Options menu.Terry Jan Reedy2014-10-236-20/+278
| | | | Original patch by Tal Einat.
* Issue #22629: Revise idle_test.htest, mostly docstring. Start revision ofTerry Jan Reedy2014-10-178-82/+112
| | | | htests to add # htest # marker for coveragepy and stop tcl errors.
* Issue #22628: Increase Treewidge line spacing so lines do not overlap.Terry Jan Reedy2014-10-171-3/+4
| | | | Move test lines up with respect to icons.
* 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.
* Issue #3068: Change 0/1 to False/True so that extension configure dialog canTerry Jan Reedy2014-10-141-58/+60
| | | | | easily recognize and display boolean values as such and recognize changes. Also reformat comments and alphabetize extensions included with Idle.
* Issue #22632: replace dead link with version-specific doc link.Terry Jan Reedy2014-10-141-1/+2
|
* Issue #22614: Don't try to update deleted text. Patch by Serhiy Storchaka.Terry Jan Reedy2014-10-131-0/+3
|
* Issue #14105: Change comment to reflect fix. Patch by Saimadhav Heblikar.Terry Jan Reedy2014-10-121-7/+2
|
* De-'colour'ize stdlib except for idlelib.configDialog.Terry Jan Reedy2014-10-092-18/+20
| | | | Tweak docstrigs and comments in affected functions in idlelib.configHandler.
* Issue 3068: Move idlelib.configDialog action button creation into a separateTerry Jan Reedy2014-10-091-19/+21
| | | | method so it can be reused by the new extension dialog.
* idlelib.configHandler: revise docstrings, add spaces, use False/True, add someTerry Jan Reedy2014-10-071-254/+232
| | | | TODOs (mostly to do after add tests), and make a few other changes.
* Update 2.7 idlelib.configHandler and reduce differences from 3.4 code.Terry Jan Reedy2014-10-061-17/+19
|
* Issue #3832: backport 677a9326b4d4 to 2.7 (and delete some obsolete code).Terry Jan Reedy2014-10-061-7/+7
|
* Update Idle's online doc url.Terry Jan Reedy2014-09-201-1/+1
|
* Issue #22420: Avoid 'write to None' crashes by using print instead.Terry Jan Reedy2014-09-202-35/+35
| | | | | For 2,.7, add print_function __future__ import and convert print statements to print functions. Based on 3.x patch by Serhiy Storchaka.
* Issue #22340: Fix Python 3 warnings in Python 2 testsVictor Stinner2014-09-051-1/+1
|
* Issue #22221: Backported fixes from Python 3 (issue #18960).Serhiy Storchaka2014-09-051-0/+3
| | | | | | | | | | | | | * Now the source encoding declaration on the second line isn't effective if the first line contains anything except a comment. This affects compile(), eval() and exec() too. * IDLE now ignores the source encoding declaration on the second line if the first line contains anything except a comment. * 2to3 and the findnocoding.py script now ignore the source encoding declaration on the second line if the first line contains anything except a comment.
* Idle ColorDelegator: finish removing code for 'as'.Terry Jan Reedy2014-08-191-1/+0
|
* Idle ColorDelegator: remove special case code for 'as' in import statements.Terry Jan Reedy2014-08-191-17/+0
| | | | 'As' became a full keyword when with statements were added in 2.5/2.6.
* Issue #17390: Adjust Editor window title. Remove 'Python', move version to end.Terry Jan Reedy2014-08-151-4/+5
|
* Issue #14105: Stop removing breakpoints from Idle editors.Terry Jan Reedy2014-08-092-1/+10
| | | | Move BREAK tag configuration to PyShellEditorWindow.
* PEP 8 spacing in idlelib.configDialog: mostly a = b in assignments,Terry Jan Reedy2014-08-041-565/+603
| | | | a, b in arg lists, and hanging indents for long arg lists.
* Issue #22068: Don't create self reference cycles in idlelib.ConfigDialog.Terry Jan Reedy2014-07-301-29/+38
| | | | In 2.7, these become leaks and cause test_gc to fail.
* Reduce unnecessary 2.7 versus 3.4+ differences in idlelib/configDialog.py.Terry Jan Reedy2014-07-271-29/+28
| | | | | | | Only change 2.7 version. Remove ".keys()" from "x in y.keys()" (leave .keys() elsewhere alone). Change "string.join" to "' '.join" (and string.join(s, ';') to ';'.join(s)). Change spacing to match 3.4 (will later make spacing changes to both).
* Issue #21982: Add minimal unittest for configDialog with 46% coverage.Terry Jan Reedy2014-07-152-3/+41
|
* Issue #17506: Synchronize Misc/NEWS and idlelib/NEWS.txt for 2.7.Terry Jan Reedy2014-07-141-19/+279
|
* Issue #18592: Method return signature changes made to SearchDialogBase forTerry Jan Reedy2014-07-134-19/+35
| | | | | test purposes are now reflected in GrepDialog and ReplaceDialog. Docstrings are improved. Initial patch by Saimadhav Heblikar
* Issue #18592: Make unittest for SearchDialogBase work on all tk versions.Terry Jan Reedy2014-07-111-4/+4
|
* #21940: Add unittest for WidgetRedirector. Initial patch by Saimadhav Heblikar.Terry Jan Reedy2014-07-113-12/+145
|
* Issue #21940: add docstrings to idlelib.WidgetRedirector.Terry Jan Reedy2014-07-101-18/+59
|
* More idlelib cleanup inspired by pyflakes.Terry Jan Reedy2014-07-023-7/+5
|
* Delete a few unused names suggested by pyflakes.Terry Jan Reedy2014-07-014-8/+9
|
* Issue #18592: Refactor 2 SearchDialogBase.create_(option/other)_buttons methodsTerry Jan Reedy2014-07-012-124/+70
| | | | | | to remove duplication and return info for tests. Rewrite corresponding tests. Test_create_option_buttons was not testing anything because of buggy comparisons. Use Python subscripting to get widget options.
* whitespaceTerry Jan Reedy2014-07-011-1/+1
|
* Issue #18592: Add unittests for SearchDialogBase. Patch by Phil Webster.Terry Jan Reedy2014-06-302-10/+213
|
* bump to 2.7.8v2.7.8Benjamin Peterson2014-06-301-1/+1
|
* Issue #18592: For idlelib.SearchDialogBase, edit and add docstrings,Terry Jan Reedy2014-06-261-30/+57
| | | | move two functions next to the functions that use them.