summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib
Commit message (Expand)AuthorAgeFilesLines
* bpo-36958: In IDLE, print exit message (GH-13435)Terry Jan Reedy2019-05-203-6/+15
* Fix typos in documentation. Patch by tirkarthi. (GH-13354)Terry Jan Reedy2019-05-161-6/+6
* bpo-36807: When saving a file in IDLE, call flush and fsync (#13102)Guido van Rossum2019-05-131-0/+2
* bpo-36766: Typos in docs and code comments (GH-13116)penguindustin2019-05-064-4/+4
* Syntax highlight IDLE html doc code example. (GH-12981)Terry Jan Reedy2019-04-271-25/+23
* bpo-36431: Use PEP 448 dict unpacking for merging two dicts. (GH-12553)Serhiy Storchaka2019-03-271-2/+1
* bpo-36429: Fix starting IDLE with pyshell (#12548)Terry Jan Reedy2019-03-262-5/+12
* bpo-30348: IDLE: Add test_autocomplete unittest (GH-2209)Louie Lu2019-03-242-27/+130
* bpo-36405: IDLE - Restore __main__ and add tests (#12518)Terry Jan Reedy2019-03-244-9/+17
* bpo-23205: IDLE: Add tests and refactor grep's findfiles (GH-12203)Cheryl Sabella2019-03-232-45/+107
* bpo-36405: Use dict unpacking in idlelib (#12507)Terry Jan Reedy2019-03-233-12/+8
* bpo-36396: Remove fgBg param of idlelib.config.GetHighlight() (GH-12491)Terry Jan Reedy2019-03-226-58/+39
* bpo-23216: IDLE: Add docstrings to search modules (GH-12141)Cheryl Sabella2019-03-163-39/+188
* bpo-36176: Fix IDLE autocomplete & calltip popup colors. (#12262)Terry Jan Reedy2019-03-113-3/+8
* bpo-34162: Add entries for idlelib/NEWS.txt (#12232)Terry Jan Reedy2019-03-081-0/+6
* bpo-32129: Avoid blurry IDLE application icon on macOS with Tk 8.6. (GH-12031)Ned Deily2019-03-011-1/+1
* bpo-36152: IDLE: Remove unused parameter from colorizer (GH-12109)Cheryl Sabella2019-03-012-18/+3
* bpo-36096: IDLE: Refactor class variables in colorizer (GH-12002)Cheryl Sabella2019-02-272-21/+57
* bpo-24310: Document IDLE settings dialog font tab sample (GH-12007)Terry Jan Reedy2019-02-242-1/+9
* bpo-35689: IDLE: Add docstrings and unittests for colorizer.py (GH-11472)Cheryl Sabella2019-02-193-16/+407
* bpo-35833: Revise IDLE doc for control codes sent to Shell. (GH-11799)Terry Jan Reedy2019-02-092-14/+34
* bpo-35683: Improve Azure Pipelines steps (GH-11493)Steve Dower2019-01-221-0/+2
* bpo-35770: Fix off-by-1 error. (#11618)Terry Jan Reedy2019-01-181-1/+1
* bpo-35770: IDLE macosx deletes Options => Configure IDLE. (GH-11614)Terry Jan Reedy2019-01-182-1/+6
* bpo-35769: Change IDLE's name for new files from 'Untitled' to 'untitled' (GH...Terry Jan Reedy2019-01-182-2/+4
* bpo-35730: IDLE - test squeezer reload() by checking load_font() (GH-11585)Tal Einat2019-01-181-7/+3
* bpo-34161: Update idlelib/NEWS.txt to 2019 Jan 17 (GH-11597)Terry Jan Reedy2019-01-171-0/+15
* bpo-35730: Disable IDLE test_reload assertion. (GH-11543)Terry Jan Reedy2019-01-131-1/+3
* bpo-35196: Optimize Squeezer's write() interception (GH-10454)Tal Einat2019-01-135-263/+246
* bpo-35660: Fix imports in idlelib.window (#11434)Cheryl Sabella2019-01-061-1/+2
* bpo-35641: IDLE - format calltip properly when no docstring (GH-11415)Emmanuel Arias2019-01-032-1/+30
* bpo-33987: IDLE - use ttk Frame for ttk widgets (GH-11395)Terry Jan Reedy2019-01-0312-28/+37
* bpo-35598: IDLE - Globalize some config_key objects (GH-11392)Cheryl Sabella2018-12-312-60/+58
* bpo-35598: IDLE: Switch config_key dialog to ttk widgets (GH-11365)Cheryl Sabella2018-12-302-35/+35
* bpo-35598: IDLE: Increase test coverage for config_key.py (#11360)Cheryl Sabella2018-12-302-7/+196
* bpo-34055: Revert deletion of line in IDLE's PyShell (#11346)Terry Jan Reedy2018-12-291-1/+1
* bpo-28097: IDLE - Add Previous/Next History to Shell menu (#11325)Cheryl Sabella2018-12-282-10/+15
* IDLE: Create function to update menu item state. (GH-11343)Cheryl Sabella2018-12-282-3/+7
* bpo-35591: IDLE Find Selection now works when selection not found (GH-11339)Terry Jan Reedy2018-12-281-1/+1
* bpo-35598: IDLE: Update config_key.py with PEP8 names (GH-11330)Cheryl Sabella2018-12-283-187/+216
* bpo-35208: Fix IDLE Squeezer line counting (GH-10449)Tal Einat2018-12-243-12/+35
* bpo-35555: IDLE: Gray out Code Context menu item on non-editors (#11282)Cheryl Sabella2018-12-232-0/+4
* bpo-22703: IDLE: Improve Code Context and Zoom Height menu labels (GH-11214)Cheryl Sabella2018-12-226-3/+28
* bpo-35521: Add more cross-refs to IDLE docs (#11257)Terry Jan Reedy2018-12-201-16/+18
* bpo-34162: Update idlelib/NEWS.txt to 2018-12-20. (#11255)Terry Jan Reedy2018-12-201-0/+3
* bpo-35521: IDLE: Add code context section to docs (#11205)Cheryl Sabella2018-12-201-11/+28
* bpo-34864: warn if "Prefer tabs when opening documents" set to "Always" (#10464)Tal Einat2018-12-074-9/+67
* bpo-33023: Fix NotImplemented to NotImplementedError. (GH-10934)Serhiy Storchaka2018-12-061-1/+1
* bpo-34162: Update idlelib NEWS to 2018-12-05. (GH-10964)Terry Jan Reedy2018-12-061-0/+32
* bpo-35202: Remove more unused imports in idlelib (GH-10573)Srinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి)2018-11-174-4/+3