summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorterryjreedy <tjreedy@udel.edu>2017-06-27 05:53:40 (GMT)
committerGitHub <noreply@github.com>2017-06-27 05:53:40 (GMT)
commit8bdc3bd3d66fefdc07d32bd19c41c6f902f16111 (patch)
tree6a331311db06da59a5f9f71d6d0722eb8b8f4084 /Misc/NEWS.d
parent2d348f7a723db839aa18ce8213b8663ccb0a3d35 (diff)
downloadcpython-8bdc3bd3d66fefdc07d32bd19c41c6f902f16111.zip
cpython-8bdc3bd3d66fefdc07d32bd19c41c6f902f16111.tar.gz
cpython-8bdc3bd3d66fefdc07d32bd19c41c6f902f16111.tar.bz2
[3.6] bpo-29910: IDLE no longer deletes a character after commenting out a region (GH-825) (#2429)
This happened because shortcut has a class binding and 'break' was not returned. Fix other potential conflicts between IDLE and default key bindings. * Add news item * Update NEWS (cherry picked from commit 213ce12)
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/IDLE/2017-06-26-22-45-27.bpo-29910.mqHh7u.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/IDLE/2017-06-26-22-45-27.bpo-29910.mqHh7u.rst b/Misc/NEWS.d/next/IDLE/2017-06-26-22-45-27.bpo-29910.mqHh7u.rst
new file mode 100644
index 0000000..5157f8b
--- /dev/null
+++ b/Misc/NEWS.d/next/IDLE/2017-06-26-22-45-27.bpo-29910.mqHh7u.rst
@@ -0,0 +1,3 @@
+IDLE no longer deletes a character after commenting out a region by a key
+shortcut. Add ``return 'break'`` for this and other potential conflicts
+between IDLE and default key bindings.