diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2017-10-01 00:32:29 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-01 00:32:29 (GMT) |
commit | c8198c92320bc35b1e3de5ff0118bd8e20e8d68a (patch) | |
tree | 89d4597b946f265dc65127fcc3aaedcf95d82df0 /Misc | |
parent | 40c54d5e1aaab91cb7df71f735112d20b5e5b755 (diff) | |
download | cpython-c8198c92320bc35b1e3de5ff0118bd8e20e8d68a.zip cpython-c8198c92320bc35b1e3de5ff0118bd8e20e8d68a.tar.gz cpython-c8198c92320bc35b1e3de5ff0118bd8e20e8d68a.tar.bz2 |
[3.6] bpo-31460: Simplify the API of IDLE's Module Browser. (GH-3842) (#3843)
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.
(cherry picked from commit d6bb65f)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/IDLE/2017-09-30-19-03-26.bpo-31460.HpveI6.rst | 6 |
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. |