Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
07791293
Commit
07791293
authored
Jun 02, 2016
by
Senthil Kumaran
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
issue8519 - Reference termios and ioctl manual pages in the library documentation.
parent
583a1d62
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
5 deletions
+7
-5
Doc/library/fcntl.rst
Doc/library/fcntl.rst
+3
-1
Doc/library/termios.rst
Doc/library/termios.rst
+4
-4
No files found.
Doc/library/fcntl.rst
View file @
07791293
...
@@ -12,7 +12,9 @@
...
@@ -12,7 +12,9 @@
pair: UNIX; I/O control
pair: UNIX; I/O control
This module performs file control and I/O control on file descriptors. It is an
This module performs file control and I/O control on file descriptors. It is an
interface to the :c:func:`fcntl` and :c:func:`ioctl` Unix routines.
interface to the :c:func:`fcntl` and :c:func:`ioctl` Unix routines. For a
complete description of these calls, see :manpage:`fcntl(2)` and
:manpage:`ioctl(2)` Unix manual pages.
All functions in this module take a file descriptor *fd* as their first
All functions in this module take a file descriptor *fd* as their first
argument. This can be an integer file descriptor, such as returned by
argument. This can be an integer file descriptor, such as returned by
...
...
Doc/library/termios.rst
View file @
07791293
...
@@ -11,9 +11,9 @@
...
@@ -11,9 +11,9 @@
pair: tty; I/O control
pair: tty; I/O control
This module provides an interface to the POSIX calls for tty I/O control. For a
This module provides an interface to the POSIX calls for tty I/O control. For a
complete description of these calls, see
the POSIX or Unix manual pages. It is
complete description of these calls, see
:manpage:`termios(2)` Unix manual
only available for those Unix versions that support POSIX *termios* style tty
page. It is only available for those Unix versions that support POSIX
I/O control (and then only if configured at installation time)
.
*termios* style tty I/O control configured during installation
.
All functions in this module take a file descriptor *fd* as their first
All functions in this module take a file descriptor *fd* as their first
argument. This can be an integer file descriptor, such as returned by
argument. This can be an integer file descriptor, such as returned by
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment