summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2013-05-06 19:51:03 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2013-05-06 19:51:03 (GMT)
commita7f7deb6eddc666aee507c04633d95ed78e289e0 (patch)
tree6bbd9049530eb827e21e9214b547ab4f34a4ac11 /Misc
parent002a77d2f7253c26bee9cbd8269a6b32d8c25fba (diff)
downloadcpython-a7f7deb6eddc666aee507c04633d95ed78e289e0.zip
cpython-a7f7deb6eddc666aee507c04633d95ed78e289e0.tar.gz
cpython-a7f7deb6eddc666aee507c04633d95ed78e289e0.tar.bz2
Issue #17289: The readline module now plays nicer with external modules or applications changing the rl_completer_word_break_characters global variable.
Initial patch by Bradley Froehle.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b83f9a7..4739cfd 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -47,6 +47,10 @@ Core and Builtins
Library
-------
+- Issue #17289: The readline module now plays nicer with external modules
+ or applications changing the rl_completer_word_break_characters global
+ variable. Initial patch by Bradley Froehle.
+
- Issue #12181: select module: Fix struct kevent definition on OpenBSD 64-bit
platforms. Patch by Federico Schwindt.