From f9f5037164905aa8974fa2231be647c0c0821233 Mon Sep 17 00:00:00 2001 From: Terry Jan Reedy Date: Sun, 10 Jun 2018 13:41:07 -0400 Subject: [PATCH 1/3] bpo-33820: Update idlelib subsection of What's New 3.6 --- Doc/whatsnew/3.6.rst | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/Doc/whatsnew/3.6.rst b/Doc/whatsnew/3.6.rst index ed489c101c1bbf..fcfe31ab902309 100644 --- a/Doc/whatsnew/3.6.rst +++ b/Doc/whatsnew/3.6.rst @@ -1142,6 +1142,42 @@ In compensation, the eventual result with be that some idlelib classes will be easier to use, with better APIs and docstrings explaining them. Additional useful information will be added to idlelib when available. +New in 3.6.2: + +Multiple fixes for autocompletion. (Contributed by Louie Lu in :issue:`15786`.) + +New in 3.6.3: + +Module Browser (on the File menu, formerly called Class Browser), +now displays nested functions and classes in addition to top-level +functions and classes. +(Contributed by Guilherme Polo, Cheryl Sabella, and Terry Jan Reedy +in :issue:`1612262`.) + +The IDLE features formerly implemented as extensions have been reimplemented +as normal features. Their settings have been moved from the Extensions tab +to other dialog tabs. +(Contributed by Charles Wohlganger and Terry Jan Reedy in :issue:`27099`.) + +The Settings dialog (Options, Configure IDLE) has been partly rewritten +to improve both appearance and function. +(Contributed by Cheryl Sabella and Terry Jan Reedy in multiple issues.) + +New in 3.6.4: + +The font sample now includes a selection of non-Latin characters so that +users can better see the effect of selecting a particular font. +(Contributed by Terry Jan Reedy in :issue:`13802`.) +The sample can be edited to include other characters. +(Contributed by Serhiy Storchaka in :issue:`31860`.) + +New in 3.6.6: + +Editor code context option revised. Box displays all context lines up to +maxlines. Clicking on a context line jumps the editor to that line. Context +colors for custom themes is added to Highlights tab of Settings dialog. +(Contributed by Cheryl Sabella and Terry Jan Reedy in :issue:`33642`, +:issue:`33768`, and :issue:`33679`, importlib --------- From 52072488e42844e79ddd480499141a8437128324 Mon Sep 17 00:00:00 2001 From: Terry Jan Reedy Date: Sun, 10 Jun 2018 13:53:27 -0400 Subject: [PATCH 2/3] Update IDLE entry in What's New 3.7. --- Doc/whatsnew/3.7.rst | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/Doc/whatsnew/3.7.rst b/Doc/whatsnew/3.7.rst index 762d84a89bf3e2..fce073ec172f14 100644 --- a/Doc/whatsnew/3.7.rst +++ b/Doc/whatsnew/3.7.rst @@ -962,8 +962,10 @@ It is used when ``http.server`` is run with ``-m``. idlelib and IDLE ---------------- +Multiple fixes for autocompletion. (Contributed by Louie Lu in :issue:`15786`.) + Module Browser (on the File menu, formerly called Class Browser), -now displays nested functions and classed in addition to top-level +now displays nested functions and classes in addition to top-level functions and classes. (Contributed by Guilherme Polo, Cheryl Sabella, and Terry Jan Reedy in :issue:`1612262`.) @@ -975,7 +977,7 @@ to improve both appearance and function. The font sample now includes a selection of non-Latin characters so that users can better see the effect of selecting a particular font. (Contributed by Terry Jan Reedy in :issue:`13802`.) -The sample can be edited to test other characters. +The sample can be edited to include other characters. (Contributed by Serhiy Storchaka in :issue:`31860`.) The IDLE features formerly implemented as extensions have been reimplemented @@ -983,6 +985,12 @@ as normal features. Their settings have been moved from the Extensions tab to other dialog tabs. (Contributed by Charles Wohlganger and Terry Jan Reedy in :issue:`27099`.) +Editor code context option revised. Box displays all context lines up to +maxlines. Clicking on a context line jumps the editor to that line. Context +colors for custom themes is added to Highlights tab of Settings dialog. +(Contributed by Cheryl Sabella and Terry Jan Reedy in :issue:`33642`, +:issue:`33768`, and :issue:`33679`, + The changes above have been backported to 3.6 maintenance releases. From b39ed7b620b878a7f92d19361d21db3f45f981e4 Mon Sep 17 00:00:00 2001 From: Terry Jan Reedy Date: Sun, 10 Jun 2018 14:09:40 -0400 Subject: [PATCH 3/3] Update 3.6.rst --- Doc/whatsnew/3.6.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/Doc/whatsnew/3.6.rst b/Doc/whatsnew/3.6.rst index fcfe31ab902309..3feca6c59471d0 100644 --- a/Doc/whatsnew/3.6.rst +++ b/Doc/whatsnew/3.6.rst @@ -1179,6 +1179,7 @@ colors for custom themes is added to Highlights tab of Settings dialog. (Contributed by Cheryl Sabella and Terry Jan Reedy in :issue:`33642`, :issue:`33768`, and :issue:`33679`, + importlib ---------