From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Sun, 22 May 2022 23:11:36 +0000 (-0700) Subject: termios docs: fix indentation (GH-93080) X-Git-Tag: v3.11.0b2~43 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a86ad12399c33086fae2490ee26814ccd07ee6af;p=thirdparty%2FPython%2Fcpython.git termios docs: fix indentation (GH-93080) (cherry picked from commit ea5918e932a441aef8c22acfdcfa6345ec32d1a8) Co-authored-by: Jelle Zijlstra --- diff --git a/Doc/library/termios.rst b/Doc/library/termios.rst index 3b0cb60f8745..fb1ff567d49e 100644 --- a/Doc/library/termios.rst +++ b/Doc/library/termios.rst @@ -85,11 +85,11 @@ The module defines the following functions: .. function:: tcsetwinsize(fd, winsize) - Set the tty window size for file descriptor *fd* from *winsize*, which is - a two-item tuple ``(ws_row, ws_col)`` like the one returned by - :func:`tcgetwinsize`. Requires at least one of the pairs - (:const:`termios.TIOCGWINSZ`, :const:`termios.TIOCSWINSZ`); - (:const:`termios.TIOCGSIZE`, :const:`termios.TIOCSSIZE`) to be defined. + Set the tty window size for file descriptor *fd* from *winsize*, which is + a two-item tuple ``(ws_row, ws_col)`` like the one returned by + :func:`tcgetwinsize`. Requires at least one of the pairs + (:const:`termios.TIOCGWINSZ`, :const:`termios.TIOCSWINSZ`); + (:const:`termios.TIOCGSIZE`, :const:`termios.TIOCSSIZE`) to be defined. .. versionadded:: 3.11