diff options
author | Gregory P. Smith <greg@krypto.org> | 2021-02-12 20:04:46 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-12 20:04:46 (GMT) |
commit | fd053fdd39fbdf114b4218ea4309666bafa95788 (patch) | |
tree | 360827543b553179e7d8526506106076071874d8 /Misc | |
parent | 5ec7d535581bc99918e032891167a96abd224ed6 (diff) | |
download | cpython-fd053fdd39fbdf114b4218ea4309666bafa95788.zip cpython-fd053fdd39fbdf114b4218ea4309666bafa95788.tar.gz cpython-fd053fdd39fbdf114b4218ea4309666bafa95788.tar.bz2 |
bpo-43172: readline now passes its tests when built against libedit (GH-24499)
bpo-43172: readline now passes its tests when built against libedit.
Existing irreconcilable API differences remain in readline.get_begidx
and readline.get_endidx behavior based on libreadline vs libedit use.
A note about that has been documented.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2021-02-10-06-00-53.bpo-43172.ZMCJni.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2021-02-10-06-00-53.bpo-43172.ZMCJni.rst b/Misc/NEWS.d/next/Library/2021-02-10-06-00-53.bpo-43172.ZMCJni.rst new file mode 100644 index 0000000..dc75660 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2021-02-10-06-00-53.bpo-43172.ZMCJni.rst @@ -0,0 +1,4 @@ +The readline module now passes its tests when built directly against +libedit. Existing irreconcilable API differences remain in +:func:`readline.get_begidx` and :func:`readline.get_endidx` behavior based +on libreadline vs libedit use. |