Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0779129

Browse files
committed
issue8519 - Reference termios and ioctl manual pages in the library documentation.
1 parent 583a1d6 commit 0779129

2 files changed

Lines changed: 7 additions & 5 deletions

File tree

Doc/library/fcntl.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@
1212
pair: UNIX; I/O control
1313

1414
This module performs file control and I/O control on file descriptors. It is an
15-
interface to the :c:func:`fcntl` and :c:func:`ioctl` Unix routines.
15+
interface to the :c:func:`fcntl` and :c:func:`ioctl` Unix routines. For a
16+
complete description of these calls, see :manpage:`fcntl(2)` and
17+
:manpage:`ioctl(2)` Unix manual pages.
1618

1719
All functions in this module take a file descriptor *fd* as their first
1820
argument. This can be an integer file descriptor, such as returned by

Doc/library/termios.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010
pair: POSIX; I/O control
1111
pair: tty; I/O control
1212

13-
This module provides an interface to the POSIX calls for tty I/O control. For a
14-
complete description of these calls, see the POSIX or Unix manual pages. It is
15-
only available for those Unix versions that support POSIX *termios* style tty
16-
I/O control (and then only if configured at installation time).
13+
This module provides an interface to the POSIX calls for tty I/O control. For a
14+
complete description of these calls, see :manpage:`termios(2)` Unix manual
15+
page. It is only available for those Unix versions that support POSIX
16+
*termios* style tty I/O control configured during installation.
1717

1818
All functions in this module take a file descriptor *fd* as their first
1919
argument. This can be an integer file descriptor, such as returned by

0 commit comments

Comments
 (0)