summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorterryjreedy <tjreedy@udel.edu>2017-06-26 05:21:02 (GMT)
committerGitHub <noreply@github.com>2017-06-26 05:21:02 (GMT)
commit64a0c266e78c6b5363668012fa7fb614f6018930 (patch)
treea3d1506d60b6093062d8430f7fca56aa4c3e20a9 /Misc
parent9c2dc0c58a878ac3d1c44dd0048f8e1cfab2790e (diff)
downloadcpython-64a0c266e78c6b5363668012fa7fb614f6018930.zip
cpython-64a0c266e78c6b5363668012fa7fb614f6018930.tar.gz
cpython-64a0c266e78c6b5363668012fa7fb614f6018930.tar.bz2
[3.6] bpo-6739: IDLE: Check for valid keybinding in config_keys (GH-2377) (#2397)
Verify user-entered key sequences by trying to bind them with tk. Add tests for all 3 validation functions. Original patch by G Polo. Tests added by Cheryl Sabella. (cherry picked from commit 8c78aa7)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/IDLE/2017-06-26-00-28-59.bpo-6739.x5MfhB.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/IDLE/2017-06-26-00-28-59.bpo-6739.x5MfhB.rst b/Misc/NEWS.d/next/IDLE/2017-06-26-00-28-59.bpo-6739.x5MfhB.rst
new file mode 100644
index 0000000..fee904d
--- /dev/null
+++ b/Misc/NEWS.d/next/IDLE/2017-06-26-00-28-59.bpo-6739.x5MfhB.rst
@@ -0,0 +1,3 @@
+IDLE: Verify user-entered key sequences by trying to bind them with tk. Add
+tests for all 3 validation functions. Original patch by G Polo. Tests added
+by Cheryl Sabella.