diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2014-07-19 20:45:24 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2014-07-19 20:45:24 (GMT) |
commit | 866bbf1cf541aadc641c5b9ac550d14e4914eb95 (patch) | |
tree | d4fd1529ced5a7fe80978845fb54541972091dd2 /Doc | |
parent | efe030c60957707a49cfed706e5d119da4c4cede (diff) | |
parent | e004c6cad590c973faabb5e278eab2ae768b214f (diff) | |
download | cpython-866bbf1cf541aadc641c5b9ac550d14e4914eb95.zip cpython-866bbf1cf541aadc641c5b9ac550d14e4914eb95.tar.gz cpython-866bbf1cf541aadc641c5b9ac550d14e4914eb95.tar.bz2 |
Issue #22006: Merge from 3.4.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/_thread.rst | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Doc/library/_thread.rst b/Doc/library/_thread.rst index 2e130c1..a787e2f 100644 --- a/Doc/library/_thread.rst +++ b/Doc/library/_thread.rst @@ -176,10 +176,6 @@ In addition to these methods, lock objects can also be used via the * Calling :func:`sys.exit` or raising the :exc:`SystemExit` exception is equivalent to calling :func:`_thread.exit`. -* Not all built-in functions that may block waiting for I/O allow other threads - to run. (The most popular ones (:func:`time.sleep`, :meth:`io.FileIO.read`, - :func:`select.select`) work as expected.) - * It is not possible to interrupt the :meth:`acquire` method on a lock --- the :exc:`KeyboardInterrupt` exception will happen after the lock has been acquired. |