summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib
Commit message (Collapse)AuthorAgeFilesLines
* bpo-30851: IDLE: Remove unused tk variables in configdialog. (#2626)csabella2017-07-101-22/+1
| | | | | One is a duplicate, one is set but cannot be altered by users. Patch by Cheryl Sabella.
* bpo-30870: IDLE: Change sample font when select by key-up/down (#2617)Louie Lu2017-07-091-26/+26
| | | Patch by Louie Lu.
* bpo-8231: Call idlelib.IdleConf.GetUserCfgDir only once. (#2629)terryjreedy2017-07-083-7/+7
|
* bpo-30779: IDLE -- Factor ConfigChanges class from configdialog, put in ↵terryjreedy2017-07-074-171/+277
| | | | | | | | | | | | config; test. (#2612) * In config, put dump test code in a function; run it and unittest in 'if __name__ == '__main__'. * Add class config.ConfigChanges based on changes_class_v4.py on bpo issue. * Add class test_config.ChangesTest, partly based on configdialog_tests_v1.py on bpo issue. * Revise configdialog to use ConfigChanges, mostly as specified in tracker msg297804. * Revise test_configdialog to match configdialog changes. All tests pass in both files. * Remove configdialog functions unused or moved to ConfigChanges. Cheryl Sabella contributed parts of the patch.
* bpo-30780: Fix error in idlelib.test_idle.test_configdialog (#2606)terryjreedy2017-07-071-1/+1
|
* Update idlelib/NEWS.txt with merges upto 2017 Jul 5. (#2595)terryjreedy2017-07-051-1/+41
|
* bpo-21624: IDLE -- minor htest fixes (#2575)terryjreedy2017-07-052-1/+2
|
* bpo-30777: IDLE: configdialog - add docstrings and improve comments (#2440)csabella2017-07-051-128/+297
| | | Patch by Cheryl Sabella.
* bpo-30495: IDLE: improve textview with docstrings, PEP8 names, more tests. ↵csabella2017-06-295-100/+139
| | | | | | | (#2283) Split TextViewer class into ViewWindow, ViewFrame, and TextFrame classes so that instances of the latter two can be placed with other widgets within a multiframe window. Patch by Cheryl Sabella.
* bpo-24813: IDLE tagline is Integrated Development and Learning Environment ↵Mark Roseman2017-06-281-1/+1
| | | | | (#2451) Patch by Mark Roseman
* bpo-30723: IDLE -- Enhance parenmatch; add style, flash, and help (#2306)wohlganger2017-06-283-72/+91
| | | | | | | | | * Add 'parens' style to highlight both opener and closer. * Make 'default' style, which is not default, a synonym for 'opener'. * Make time-delay work the same with all styles. * Add help for config dialog extensions tab, including parenmatch. * Add new tests. Original patch by Charles Wohlganger.
* bpo-30674: IDLE: add docstrings to grep.py (#2213)csabella2017-06-271-12/+54
| | | Patch by Cheryl Sabella
* bpo-21519: IDLE basic custom key entry better detects duplicates. (#2428)terryjreedy2017-06-272-7/+13
|
* bpo-29910: IDLE no longer deletes a character after commenting out a region ↵Serhiy Storchaka2017-06-2710-16/+45
| | | | | | | | | | | (#825) This happened because shortcut has a class binding and 'break' was not returned. Fix other potential conflicts between IDLE and default key bindings. * Add news item * Update NEWS
* bpo-24813: IDLE: Add build bitness to About Idle title (#2380)csabella2017-06-272-6/+24
| | | Patch by Cheryl Sabella.
* bpo-30728: IDLE: Refactor configdialog to PEP8 names (#2307)csabella2017-06-262-828/+837
| | | | Also, change '*' in the tkinter import to an explicit list of names. Patch by Cheryl Sabella.
* bpo-6739: IDLE: Check for valid keybinding in config_keys (#2377)csabella2017-06-262-26/+115
| | | | | | Verify user-entered key sequences by trying to bind them with tk. Add tests for all 3 validation functions. Original patch by G Polo. Tests added by Cheryl Sabella.
* bpo-24813: IDLE: Add default title to help_about (#2366)csabella2017-06-244-9/+33
| | | Patch by Cheryl Sabella.
* bpo-24813: IDLE: Add icon to help_about (#2335)csabella2017-06-232-4/+19
| | | Patch by Cheryl Sabella
* Fix typo in idlelib.config_key.py (#2322)terryjreedy2017-06-221-1/+1
|
* Fix trivial typo in idlelib/config.py (GH-2309)KunYuChen2017-06-211-1/+1
| | | Comceptually -> Conceptually
* Add IDLE items to NEWS and idlelib/NEWS.txt (#2239)terryjreedy2017-06-161-0/+14
|
* bpo-15786: Fix IDLE autocomplete return problem. (#2198)terryjreedy2017-06-141-1/+2
| | | Before, <return> would not, for instance, complete 're.c' to 're.compile' even with 'compile' highlighted. Now it does. Before, <return> was inserted into text, which in Shell meant compile() and possibly execute. Now cursor is left after completion.
* bpo-15786: IDLE: Fix mouse clicks on autocompletetion window (#1811)mlouielu2017-06-141-8/+50
| | | | | | | | | | | | | | | | | | | The root problem was non-check for hide_event. When user clicks on autocomplete window (acw), root widget gets focusOut event, then triggers hide_window to close the acw. It should only be hide when acw is active, and acw didn't get focus at FocusOut event (this event bind on acw and widget), or when widget get a ButtonPress event (this event only bind on widget). MacOS froze after double click on acw because when doubleclick_event try to hide window at the end, hide_window function destory whole acw, but tkinter didn't get focus back to widget. So set focus on widget first, then destory acw. Windows could not respond on double click event, because of the misbehavior of Configure event. When acw was shown, tkinter called winconfig event multiple times. That caused tkinter to not response to double click event. When on Windows, unbind Configure event first time get into winconfig_event to prevent multiple call of this event.
* bpo-25514: Improve IDLE's connection refused message (#2177)terryjreedy2017-06-143-35/+75
| | | When IDLE fail to start because the socket connection fails, direct people to a new subsection of the IDLE doc listing various causes and remedies.
* bpo-27922: Stop gui flash from idle_test.test_parenmatch (#2171)terryjreedy2017-06-131-0/+1
| | | For unknown reasons, this does not work when running leak tests.
* Fix ref leak in idle_test.test_macosx (#2163)terryjreedy2017-06-131-0/+4
|
* bpo-30642: IDLE: Fix test_query refleak (#2147)mlouielu2017-06-131-0/+1
| | | Patch by Louie Lu.
* Show what's changed when Travis fails regen check (GH-2095)Zachary Ware2017-06-111-4/+4
| | | Also fixed a few more line endings that were missed in GH-840, which were causing failure.
* Update idlelib NEWS for 3.7 (#2089)terryjreedy2017-06-111-3/+21
|
* bpo-30495: IDLE: Modernize textview.py with docstrings and PEP8 names (#1839)csabella2017-05-283-42/+62
| | | | | Patch by Cheryl Sabella.
* IDLE test_help_about: edit and add test. (#1838)terryjreedy2017-05-281-47/+75
| | | Coverage is now 100%
* bpo-30290: IDLE: Refactor help_about to PEP8 names (#1714)csabella2017-05-272-95/+119
| | | Patch by Cheryl Sabella.
* bpo-30290: IDLE: Add more tests for help_about dialog (#1697)mlouielu2017-05-212-28/+99
| | | Increases coverage to 99%
* IDLE test_textview: add comments and test, increase coverage to 100% (#1641)terryjreedy2017-05-182-9/+25
|
* bpo-30303: IDLE: Add _utest argument to textview (#1499)Louie Lu2017-05-172-11/+57
|
* bpo-30166: Import command-line parsing modules only when needed. (#1293)Serhiy Storchaka2017-05-041-4/+6
|
* bpo-30144: Import collections ABC from collections.abc rather than ↵Serhiy Storchaka2017-04-241-1/+1
| | | | collections. (#1263)
* bpo-30022: Get rid of using EnvironmentError and IOError (except test… (#1051)Serhiy Storchaka2017-04-161-1/+1
|
* bpo-29995: re.escape() now escapes only special characters. (#1007)Serhiy Storchaka2017-04-131-2/+2
|
* bpo-29919: Remove unused imports found by pyflakes (#137)Victor Stinner2017-03-278-10/+4
| | | Make also minor PEP8 coding style fixes on modified imports.
* import sys before we use it on line 9 (#828)Jelle Zijlstra2017-03-271-1/+2
|
* bpo-20185: Convert list object implementation to Argument Clinic. (#542)Serhiy Storchaka2017-03-111-4/+4
|
* Change some mercurial/ hg.python.org references. (#8)Senthil Kumaran2017-02-161-1/+1
|
* Merge with 3.6Terry Jan Reedy2017-01-051-3/+3
|\
| * Issue #29162: Don't depend on 'from tkinter import *' importing sys.Terry Jan Reedy2017-01-051-3/+3
| | | | | | | | Fix error in format string.
* | Merge with 3.6Terry Jan Reedy2017-01-021-4/+4
|\ \ | |/
| * Issue #29071: Use local flags for IDLE colorizer string prefix matcher.Terry Jan Reedy2017-01-021-4/+4
| | | | | | | | Revised re by Serhiy Storchaka.
* | Merge with 3.6Terry Jan Reedy2016-12-271-3/+10
|\ \ | |/
| * Issue #29071: IDLE now colors f-string prefixes (but not invalid ur prefixes).Terry Jan Reedy2016-12-271-3/+10
| |