diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2020-03-09 20:51:20 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-09 20:51:20 (GMT) |
commit | 363fab83b8a0e6d924c7a7c577feec6a2812bb8c (patch) | |
tree | f8b8a909fa047211331a5ed1763de8d5503ebcf4 /Misc | |
parent | e7cab7f780ac253999512ee86374fc3454342811 (diff) | |
download | cpython-363fab83b8a0e6d924c7a7c577feec6a2812bb8c.zip cpython-363fab83b8a0e6d924c7a7c577feec6a2812bb8c.tar.gz cpython-363fab83b8a0e6d924c7a7c577feec6a2812bb8c.tar.bz2 |
bpo-27115: Use Query subclass for IDLE editor Goto (GH-18871)
Replace tkinter tkSimpleDialog.askinteger with a standard IDLE query dialog.
The new box checks for positivity before returning.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/IDLE/2020-03-09-02-45-12.bpo-27115.8hSHMo.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/IDLE/2020-03-09-02-45-12.bpo-27115.8hSHMo.rst b/Misc/NEWS.d/next/IDLE/2020-03-09-02-45-12.bpo-27115.8hSHMo.rst new file mode 100644 index 0000000..76af19e --- /dev/null +++ b/Misc/NEWS.d/next/IDLE/2020-03-09-02-45-12.bpo-27115.8hSHMo.rst @@ -0,0 +1,2 @@ +For 'Go to Line', use a Query box subclass with IDLE standard behavior +and improved error checking. |