diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2018-07-20 06:14:56 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-20 06:14:56 (GMT) |
commit | 2c5c0a367c6ca648178072240fe0a32848636da6 (patch) | |
tree | be4bcfbacbc123ec982104664140e01997b571e9 | |
parent | ce75df3031c86b78311b1ad76c39c0b39d7d7424 (diff) | |
download | cpython-2c5c0a367c6ca648178072240fe0a32848636da6.zip cpython-2c5c0a367c6ca648178072240fe0a32848636da6.tar.gz cpython-2c5c0a367c6ca648178072240fe0a32848636da6.tar.bz2 |
bpo-34162: idlelib/NEWS.txt entries to 2018-7-20 (GH-8345)
-rw-r--r-- | Lib/idlelib/NEWS.txt | 36 |
1 files changed, 34 insertions, 2 deletions
diff --git a/Lib/idlelib/NEWS.txt b/Lib/idlelib/NEWS.txt index c3d77ed..6b08408 100644 --- a/Lib/idlelib/NEWS.txt +++ b/Lib/idlelib/NEWS.txt @@ -1,8 +1,40 @@ -What's New in IDLE 3.7.0 (since 3.6.0) -Released on 2018-06-18? +What's New in IDLE 3.8.0 (since 3.7.0) +Released on 2019-10-20? ====================================== +bpo-33905: Add test for idlelib.stackview.StackBrowser. + +bpo-33924: Change mainmenu.menudefs key 'windows' to 'window'. +Every other menudef key is the lowercase version of the +corresponding main menu entry (in this case, 'Window'). + +bpo-33906: Rename idlelib.windows as window +Match Window on the main menu and remove last plural module name. +Change imports, test, and attribute references to match new name. + +bpo-33917: Fix and document idlelib/idle_test/template.py. +The revised file compiles, runs, and tests OK. idle_test/README.txt +explains how to use it to create new IDLE test files. + +bpo-33904: In rstrip module, rename class RstripExtension as Rstrip. + +bpo-33907: For consistency and clarity, rename calltip objects. +Module calltips and its class CallTips are now calltip and Calltip. +In module calltip_w, class CallTip is now CalltipWindow. + +bpo-33855: Minimally test all IDLE modules. +Standardize the test file format. Add missing test files that import +the tested module and perform at least one test. Check and record the +coverage of each test. + +bpo-33856: Add 'help' to Shell's initial welcome message. + + +What's New in IDLE 3.7.0 (since 3.6.0) +Released on 2018-06-27 +====================================== + bpo-33656: On Windows, add API call saying that tk scales for DPI. On Windows 8.1+ or 10, with DPI compatibility properties of the Python binary unchanged, and a monitor resolution greater than 96 DPI, this |