summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib
Commit message (Collapse)AuthorAgeFilesLines
* [3.5] Use Travis to make sure all generated files are up to date (GH-2080) ↵Zachary Ware2017-06-111-4/+4
| | | | | | | (GH-2093) (cherry picked from commit 0afbabe245) Also fixes some line endings missed in GH-840 backport.
* Issue 27372: Stop test_idle from changing locale, so test passes. (#1397)Victor Stinner2017-05-023-42/+53
| | | | | In 3.6, the warning is now called an error, making it harder to ignore. (cherry picked from commit 7c1534141d3a159a32db9742e1d201d5c7a9ba81)
* Change some mercurial/ hg.python.org references. (#8) (#184)Senthil Kumaran2017-02-201-1/+1
| | | (cherry picked from commit b2ee40ed9c9041dcff9c898aa19aacf9ec60308a)
* Issue #25488: Stpp idle.py from adding a entry when it is a duplicate.Terry Jan Reedy2016-09-301-6/+8
| | | | Also, make idlelib.idle.main() work after import idlelib.idle.
* Move idlelib/NEWS.txt entries for 2.x into a separate file -- NEWS2x.txt.Terry Jan Reedy2016-09-302-667/+669
| | | | Reformat a few early 3.x entries in HEWS.txt.
* IDLE NEWS item and ack.Terry Jan Reedy2016-09-291-0/+3
|
* Issue #28300: Fix typos, patch by Shlomi FishBerker Peksag2016-09-281-1/+1
|
* Issue #15308: Add 'interrupt execution' (^C) to Shell menu.Terry Jan Reedy2016-09-123-26/+49
| | | | Patch by Roger Serwy, updated by Bayard Randel.
* IDLE newx items.Terry Jan Reedy2016-09-101-0/+7
|
* Issue #27895: Spelling fixes (Contributed by Ville Skyttä).Martin Panter2016-09-071-1/+1
|
* Issue #27922: IDLE tests no longer flash tk widgets.Terry Jan Reedy2016-09-016-5/+13
|
* ? Working Directory ?Terry Jan Reedy2016-08-301-14/+17
|
* Add version to title of IDLE help window.Terry Jan Reedy2016-08-261-1/+2
|
* Issue #25564: Mention exec and __builtins__ in IDLE-console difference section.Terry Jan Reedy2016-08-251-22/+21
|
* Fix typo in IDLE News.Terry Jan Reedy2016-08-211-1/+1
|
* Add 3.5.3 IDLE NEWS and idlelib/NEWS.txt items.Terry Jan Reedy2016-08-211-0/+9
|
* Issue #27714: Remove unneeded non-idempotent call that fails on retest.Terry Jan Reedy2016-08-211-2/+0
|
* Issue #27714: text_textview now passes when re-run in the same processTerry Jan Reedy2016-08-101-2/+1
| | | | because test_idle failed while running with test -w (and no -jn).
* Issue #27626: Spelling fixes in docs, comments and internal namesMartin Panter2016-07-282-2/+2
| | | | Based on patch by Ville Skyttä.
* Issue #25507: IDLE no longer runs buggy code because of its tkinter imports.Terry Jan Reedy2016-07-161-0/+6
| | | | Users must include the same imports required to run directly in Python.
* English spelling and grammar fixesMartin Panter2016-07-111-1/+1
|
* Issue #27452: add line counter and crc to IDLE configHandler test dump.Terry Jan Reedy2016-07-061-10/+21
|
* Update NEWS and idlelib NEWS.text.Terry Jan Reedy2016-06-261-1/+12
|
* Issue #27365: Allow non-ascii in idlelib/NEWS.txt, for contributor names.Terry Jan Reedy2016-06-223-0/+58
| | | | Rest of patch that should not be cherry picked into 3.5.2 final.
* Issue #27365: Allow non-ascii in idlelib/NEWS.txt - minimal part for 3.5.2.Terry Jan Reedy2016-06-222-3/+3
|
* Issue #27245: IDLE: Cleanly delete custom themes and key bindings.Terry Jan Reedy2016-06-141-2/+6
| | | | | Previously, when IDLE was started from a console or by import, a cascade of warnings was emitted. Patch by Serhiy Storchaka.
* Issue #22558: Add remaining doc links to source code for Python-coded modules.Terry Jan Reedy2016-06-111-2/+4
| | | | | Reformat header above separator line (added if missing) to a common format. Patch by Yoni Lavi.
* Issue #5124: NEWS entries.Terry Jan Reedy2016-06-111-0/+4
|
* Issue #5124: Paste with selection should always replace.Terry Jan Reedy2016-06-112-1/+85
| | | | | This is how paste work on Windows, Mac, modern Linux apps, and ttk widgets. The exception was X11 tk widgets. Original patch by Serhiy Storchake.
* Items for NEWS and idlelib/NEWS.txt.Terry Jan Reedy2016-06-071-0/+11
|
* Issue #24759: Add 'private' notice for idlelib.idle_test.Terry Jan Reedy2016-06-041-0/+6
|
* Revise and synchronize idle_test.test_configdialog.Terry Jan Reedy2016-06-041-8/+6
|
* IDLE test README: 'gui' to 'GUI', except in "'gui'" and '-ugui'.Terry Jan Reedy2016-06-041-2/+2
|
* Issue #27196: Stop 'application destroyed' warnings when running IDLE tests.Terry Jan Reedy2016-06-045-10/+22
| | | | The update_idletasks solution was provided by Serhiy Storchaka.
* Issue 20567: Revise idle_test/README.txt and some tests to match new advice.Terry Jan Reedy2016-06-049-34/+39
|
* Issue #27171: Fix typos in documentation, comments, and test function namesMartin Panter2016-06-023-3/+3
|
* Issue #27125: Remove duplicated words from documentation and commentsMartin Panter2016-05-301-2/+1
|
* Add items to MISC/NEWS and idlelib/NEWS.txt.Terry Jan Reedy2016-05-301-0/+40
|
* Issue #27117: Make ColorDelegator htest and turtledemo work with dark theme.Terry Jan Reedy2016-05-292-15/+27
| | | | Factor out code for configuring text widget colors to a new function.
* Issue #26673: Protect IDLE from Linux fonts with reported default size 0.Terry Jan Reedy2016-05-221-1/+1
| | | | Such fonts on Linux prevented the configuration dialog from opening.
* Issue #21939: Test IDLE percolator. Original patch by Saimadhav Heblikar.Terry Jan Reedy2016-05-183-26/+145
|
* Issue #21676: test IDLE replace dialog. Original patch by Saimadhav Heblikar.Terry Jan Reedy2016-05-172-9/+321
|
* Issue #18410: add missing parent argument.Terry Jan Reedy2016-05-171-1/+1
|
* Issue #18410: Test IDLE's search dialog; original patch by Westley Martínez.Terry Jan Reedy2016-05-172-10/+98
|
* Issue #21703: Add test for undo delegator. Patch most by Saimadhav Heblikar .Terry Jan Reedy2016-05-172-11/+148
|
* Issue #27044: stop test_idle from leaking by deleting callbacks.Terry Jan Reedy2016-05-172-0/+12
|
* Issue 18910: Edit idle_test/README.txt to add 'requires' usage at module scope.Terry Jan Reedy2016-05-161-53/+62
| | | | Uppercase 'GUI', remove 2.7 references and reflow text.
* Issue #23977: Tweak IDLE Delegator and its test.Terry Jan Reedy2016-05-162-12/+23
|
* Issue #25747: remove undependable and possibly useless test.Terry Jan Reedy2016-05-151-9/+0
|
* Issue #20640: Add https: to url prefixes so test passes on Darwin.Terry Jan Reedy2016-05-151-1/+1
|