summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2017-09-30 23:54:28 (GMT)
committerGitHub <noreply@github.com>2017-09-30 23:54:28 (GMT)
commitd6bb65f378e34fe0c11fdb39588357ecf22964eb (patch)
tree5cdcb340f58d22e9e04a7a0ed043a91e57847dff /Misc
parentbfebfd81de21b7906df386fce845f2b1f5ffd212 (diff)
downloadcpython-d6bb65f378e34fe0c11fdb39588357ecf22964eb.zip
cpython-d6bb65f378e34fe0c11fdb39588357ecf22964eb.tar.gz
cpython-d6bb65f378e34fe0c11fdb39588357ecf22964eb.tar.bz2
bpo-31460: Simplify the API of IDLE's Module Browser. (#3842)
Passing a widget instead of an flist with a root widget opens the option of creating a browser frame that is only part of a window. Passing a full file name instead of pieces assumed to come from a .py file opens the possibility of browsing python files that do not end in .py.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/IDLE/2017-09-30-19-03-26.bpo-31460.HpveI6.rst6
1 files changed, 6 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/IDLE/2017-09-30-19-03-26.bpo-31460.HpveI6.rst b/Misc/NEWS.d/next/IDLE/2017-09-30-19-03-26.bpo-31460.HpveI6.rst
new file mode 100644
index 0000000..6492115
--- /dev/null
+++ b/Misc/NEWS.d/next/IDLE/2017-09-30-19-03-26.bpo-31460.HpveI6.rst
@@ -0,0 +1,6 @@
+Simplify the API of IDLE's Module Browser.
+
+Passing a widget instead of an flist with a root widget opens the option of
+creating a browser frame that is only part of a window. Passing a full file
+name instead of pieces assumed to come from a .py file opens the possibility
+of browsing python files that do not end in .py.