gh-85984: Document change in return type of tty functions (#110028)

This commit is contained in:
Jelle Zijlstra 2023-10-03 20:46:38 -07:00 committed by GitHub
parent 269005e784
commit f02f26e293
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -43,6 +43,9 @@ The :mod:`tty` module defines the following functions:
:func:`termios.tcsetattr`. The return value of :func:`termios.tcgetattr`
is saved before setting *fd* to raw mode; this value is returned.
.. versionchanged:: 3.12
The return value is now the original tty attributes, instead of None.
.. function:: setcbreak(fd, when=termios.TCSAFLUSH)
@ -51,6 +54,9 @@ The :mod:`tty` module defines the following functions:
:func:`termios.tcsetattr`. The return value of :func:`termios.tcgetattr`
is saved before setting *fd* to cbreak mode; this value is returned.
.. versionchanged:: 3.12
The return value is now the original tty attributes, instead of None.
.. seealso::