diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-10-14 04:54:05 (GMT) |
---|---|---|
committer | Raymond Hettinger <rhettinger@users.noreply.github.com> | 2019-10-14 04:54:05 (GMT) |
commit | c09379bd6ebdd896547008c641e8899a1e36aa42 (patch) | |
tree | d04b97358d8f60cdc26f4a84780bb51a0d13f276 /Doc | |
parent | 75d8a7529574f9997c6b13f9c45f7e79c868b33d (diff) | |
download | cpython-c09379bd6ebdd896547008c641e8899a1e36aa42.zip cpython-c09379bd6ebdd896547008c641e8899a1e36aa42.tar.gz cpython-c09379bd6ebdd896547008c641e8899a1e36aa42.tar.bz2 |
bpo-38461 and bpo-38463: Minor fixes to Whatsnew 3.8 (GH-16761) (GH-16762)
* bpo-38461: ncurses misspelled as curses
* bpo-38463: Fix broken link
(cherry picked from commit 61a6db5e79921b89b9e2a154990f01f5f3150213)
Co-authored-by: Raymond Hettinger <rhettinger@users.noreply.github.com>
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.8.rst | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/Doc/whatsnew/3.8.rst b/Doc/whatsnew/3.8.rst index 422a649..a3adf96 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 ------- @@ -918,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`.) |