diff options
author | Zvezdan Petkovic <zpetkovic@acm.org> | 2018-05-17 06:45:10 (GMT) |
---|---|---|
committer | Ned Deily <nad@python.org> | 2018-05-17 06:45:10 (GMT) |
commit | c2f082e9d164acfa8f96de9526f0f47ae92c426a (patch) | |
tree | 2703db1255f12f5603b1f0b38c9f888305bc72f2 /Misc/NEWS.d/next/macOS | |
parent | 64fddc423fcbe90b8088446c63385ec0aaf3077c (diff) | |
download | cpython-c2f082e9d164acfa8f96de9526f0f47ae92c426a.zip cpython-c2f082e9d164acfa8f96de9526f0f47ae92c426a.tar.gz cpython-c2f082e9d164acfa8f96de9526f0f47ae92c426a.tar.bz2 |
bpo-13631: Fix the order of initialization for readline libedit on macOS. (GH-6915)
The editline emulation needs to be initialized *after* the name is
defined. This fixes the long open issue.
Diffstat (limited to 'Misc/NEWS.d/next/macOS')
-rw-r--r-- | Misc/NEWS.d/next/macOS/2018-05-16-13-25-58.bpo-13631.UIjDyY.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/macOS/2018-05-16-13-25-58.bpo-13631.UIjDyY.rst b/Misc/NEWS.d/next/macOS/2018-05-16-13-25-58.bpo-13631.UIjDyY.rst new file mode 100644 index 0000000..d9d505e --- /dev/null +++ b/Misc/NEWS.d/next/macOS/2018-05-16-13-25-58.bpo-13631.UIjDyY.rst @@ -0,0 +1,2 @@ +The .editrc file in user's home directory is now processed correctly during +the readline initialization through editline emulation on macOS. |