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

Skip to content

Commit fde75ae

Browse files
Merge heads
2 parents 93ac7ae + 7ee9194 commit fde75ae

3 files changed

Lines changed: 12 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/sqlite3.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,11 @@ Module functions and constants
190190
any combination of :const:`PARSE_DECLTYPES` and :const:`PARSE_COLNAMES` to turn
191191
type detection on.
192192

193+
By default, *check_same_thread* is :const:`True` and only the creating thread may
194+
use the connection. If set :const:`False`, the returned connection may be shared
195+
across multiple threads. When using multiple threads with the same connection
196+
writing operations should be serialized by the user to avoid data corruption.
197+
193198
By default, the :mod:`sqlite3` module uses its :class:`Connection` class for the
194199
connect call. You can, however, subclass the :class:`Connection` class and make
195200
:func:`connect` use your class instead by providing your class for the *factory*

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)