Skip to content

Commit

Permalink
gh-101100: Fix Sphinx warnings in library/tty.rst (#111079)
Browse files Browse the repository at this point in the history
Fix Sphinx warnings in library/tty.rst
  • Loading branch information
hugovk committed Oct 20, 2023
1 parent b802882 commit c42c68a
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
18 changes: 14 additions & 4 deletions Doc/library/termios.rst
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,20 @@ The module defines the following functions:

Set the tty attributes for file descriptor *fd* from the *attributes*, which is
a list like the one returned by :func:`tcgetattr`. The *when* argument
determines when the attributes are changed: :const:`TCSANOW` to change
immediately, :const:`TCSADRAIN` to change after transmitting all queued output,
or :const:`TCSAFLUSH` to change after transmitting all queued output and
discarding all queued input.
determines when the attributes are changed:

.. data:: TCSANOW

Change attributes immediately.

.. data:: TCSADRAIN

Change attributes after transmitting all queued output.

.. data:: TCSAFLUSH

Change attributes after transmitting all queued output and
discarding all queued input.


.. function:: tcsendbreak(fd, duration)
Expand Down
1 change: 0 additions & 1 deletion Doc/tools/.nitignore
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,6 @@ Doc/library/tkinter.rst
Doc/library/tkinter.scrolledtext.rst
Doc/library/tkinter.ttk.rst
Doc/library/traceback.rst
Doc/library/tty.rst
Doc/library/unittest.mock.rst
Doc/library/unittest.rst
Doc/library/urllib.parse.rst
Expand Down

0 comments on commit c42c68a

Please sign in to comment.