summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorR. David Murray <rdmurray@bitdance.com>2010-12-18 03:48:32 (GMT)
committerR. David Murray <rdmurray@bitdance.com>2010-12-18 03:48:32 (GMT)
commit52d1b4e62fd35e19d4f2c231fe48d463cb83d374 (patch)
tree7878321a91a145667bd978e7576f415dcc8b1f15 /Misc/NEWS
parentc539a2a88ef54b4ecb1c3c769f31b6e8da361ad1 (diff)
downloadcpython-52d1b4e62fd35e19d4f2c231fe48d463cb83d374.zip
cpython-52d1b4e62fd35e19d4f2c231fe48d463cb83d374.tar.gz
cpython-52d1b4e62fd35e19d4f2c231fe48d463cb83d374.tar.bz2
#9907: call rl_initialize early when using editline on OSX
editline rl_initialize apparently discards any mappings done before it is called, which makes tab revert to file completion instead of inserting a tab. So now on OSX we call rl_initialize first if we are using readline, and then re-read the users .editrc (if any) afterward so they can still override our defaults. Patch by Ned Deily, modified by Ronald Oussoren.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index c486a59..37a2333 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -20,6 +20,9 @@ Core and Builtins
Library
-------
+- Issue $9907: Fix tab handling on OSX when using editline by calling
+ rl_initialize first, then setting our custom defaults, then reading .editrc.
+
- Issue #4188: Avoid creating dummy thread objects when logging operations
from the threading module (with the internal verbose flag activated).