From 6c620cec7bb9d82660109420db62599304c9f9a1 Mon Sep 17 00:00:00 2001 From: "Gregory P. Smith" Date: Thu, 26 Aug 2021 20:12:09 -0700 Subject: [PATCH 1/2] bpo-41818: ++ termios versionadded markers. --- Doc/library/termios.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Doc/library/termios.rst b/Doc/library/termios.rst index 8ced0bbbd7757e..5f0b306dd26df9 100644 --- a/Doc/library/termios.rst +++ b/Doc/library/termios.rst @@ -80,6 +80,8 @@ The module defines the following functions: descriptor *fd*. Requires :const:`termios.TIOCGWINSZ` or :const:`termios.TIOCGSIZE`. + .. versionadded: 3.11 + .. function:: tcsetwinsize(fd, winsize) @@ -89,6 +91,8 @@ The module defines the following functions: (:const:`termios.TIOCGWINSZ`, :const:`termios.TIOCSWINSZ`); (:const:`termios.TIOCGSIZE`, :const:`termios.TIOCSSIZE`) to be defined. + .. versionadded: 3.11 + .. seealso:: From 99aae00eca763cce89954200448a492a04efeb5e Mon Sep 17 00:00:00 2001 From: "Gregory P. Smith" Date: Thu, 26 Aug 2021 20:22:13 -0700 Subject: [PATCH 2/2] missing : --- Doc/library/termios.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/library/termios.rst b/Doc/library/termios.rst index 5f0b306dd26df9..3b0cb60f874522 100644 --- a/Doc/library/termios.rst +++ b/Doc/library/termios.rst @@ -80,7 +80,7 @@ The module defines the following functions: descriptor *fd*. Requires :const:`termios.TIOCGWINSZ` or :const:`termios.TIOCGSIZE`. - .. versionadded: 3.11 + .. versionadded:: 3.11 .. function:: tcsetwinsize(fd, winsize) @@ -91,7 +91,7 @@ The module defines the following functions: (:const:`termios.TIOCGWINSZ`, :const:`termios.TIOCSWINSZ`); (:const:`termios.TIOCGSIZE`, :const:`termios.TIOCSSIZE`) to be defined. - .. versionadded: 3.11 + .. versionadded:: 3.11 .. seealso::