From fe3ce3b036728d388b0cecfd972b54fc360a4ff5 Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Sun, 13 Oct 2019 20:41:24 -0700 Subject: [PATCH 1/2] bpo-38461: ncurses misspelled as curses --- Doc/whatsnew/3.8.rst | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/Doc/whatsnew/3.8.rst b/Doc/whatsnew/3.8.rst index 422a6497e0a2ef..f1f2d9b2229729 100644 --- a/Doc/whatsnew/3.8.rst +++ b/Doc/whatsnew/3.8.rst @@ -599,6 +599,7 @@ marked with the ``CO_COROUTINE`` flag may then be returned. (Contributed by Matthias Bussonnier in :issue:`34616`) + collections ----------- @@ -610,6 +611,14 @@ to cast the result to the desired type: ``OrderedDict(nt._asdict())``. (Contributed by Raymond Hettinger in :issue:`35864`.) +curses +------- + +Added a new variable holding structured version information for the +underlying ncurses library: :data:`~curses.ncurses_version`. +(Contributed by Serhiy Storchaka in :issue:`31680`.) + + ctypes ------ @@ -826,14 +835,6 @@ non-existent directory. symlinks and directory junctions. -ncurses -------- - -Added a new variable holding structured version information for the -underlying ncurses library: :data:`~curses.ncurses_version`. -(Contributed by Serhiy Storchaka in :issue:`31680`.) - - pathlib ------- From e3259f95348c04b57e0b83ba767c6f3c413544de Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Sun, 13 Oct 2019 20:53:23 -0700 Subject: [PATCH 2/2] bpo-38463: Fix broken link --- Doc/whatsnew/3.8.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/whatsnew/3.8.rst b/Doc/whatsnew/3.8.rst index f1f2d9b2229729..a3adf961882431 100644 --- a/Doc/whatsnew/3.8.rst +++ b/Doc/whatsnew/3.8.rst @@ -919,7 +919,7 @@ The :func:`socket.if_nameindex()`, :func:`socket.if_nametoindex()`, and ssl --- -Added :attr:`SSLContext.post_handshake_auth` to enable and +Added :attr:`ssl.SSLContext.post_handshake_auth` to enable and :meth:`ssl.SSLSocket.verify_client_post_handshake` to initiate TLS 1.3 post-handshake authentication. (Contributed by Christian Heimes in :issue:`34670`.)