summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2018-05-20 21:00:13 (GMT)
committerGitHub <noreply@github.com>2018-05-20 21:00:13 (GMT)
commitdd281873baeaade38ceee70b10e649cfaadcf15a (patch)
tree0872e6c4845dc52571eb41ba112bf445da86b2f1 /Doc/whatsnew
parentd361e99868a9eaa7ffce9341e1207705dbb66b50 (diff)
downloadcpython-dd281873baeaade38ceee70b10e649cfaadcf15a.zip
cpython-dd281873baeaade38ceee70b10e649cfaadcf15a.tar.gz
cpython-dd281873baeaade38ceee70b10e649cfaadcf15a.tar.bz2
Add idlelib and IDLE section to What's New in 3.7. (#7019)
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.7.rst27
1 files changed, 27 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.7.rst b/Doc/whatsnew/3.7.rst
index 09a6eac..8324be8 100644
--- a/Doc/whatsnew/3.7.rst
+++ b/Doc/whatsnew/3.7.rst
@@ -923,6 +923,33 @@ It is used when ``http.server`` is run with ``-m``.
(Contributed by Julien Palard in :issue:`31639`.)
+idlelib and IDLE
+----------------
+
+Module Browser (on the File menu, formerly called Class Browser),
+now displays nested functions and classed in addition to top-level
+functions and classes.
+(Contributed by Guilherme Polo, Cheryl Sabella, and Terry Jan Reedy
+in :issue:`1612262`.)
+
+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.)
+
+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.
+(Contributed by Serhiy Storchaka in :issue:`31860`.)
+
+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 changes above have been backported to 3.6 maintenance releases.
+
+
importlib
---------