mirror of
https://github.com/python/cpython.git
synced 2025-09-27 02:39:58 +00:00
gh-85984: Document change in return type of tty functions (#110028)
This commit is contained in:
parent
269005e784
commit
f02f26e293
1 changed files with 6 additions and 0 deletions
|
@ -43,6 +43,9 @@ The :mod:`tty` module defines the following functions:
|
||||||
:func:`termios.tcsetattr`. The return value of :func:`termios.tcgetattr`
|
:func:`termios.tcsetattr`. The return value of :func:`termios.tcgetattr`
|
||||||
is saved before setting *fd* to raw mode; this value is returned.
|
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)
|
.. 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`
|
:func:`termios.tcsetattr`. The return value of :func:`termios.tcgetattr`
|
||||||
is saved before setting *fd* to cbreak mode; this value is returned.
|
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::
|
.. seealso::
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue