[Python-checkins] cpython (2.7): Issue #22006: Remove outdated thread module caveat. Thanks Dan O'Reilly for

mark.dickinson python-checkins at python.org
Sat Jul 19 22:47:36 CEST 2014


http://hg.python.org/cpython/rev/4f359c631bb0
changeset:   91731:4f359c631bb0
branch:      2.7
parent:      91728:ef009b76bca3
user:        Mark Dickinson <dickinsm at gmail.com>
date:        Sat Jul 19 21:47:13 2014 +0100
summary:
  Issue #22006: Remove outdated thread module caveat.  Thanks Dan O'Reilly for the report.

files:
  Doc/library/thread.rst |  4 ----
  1 files changed, 0 insertions(+), 4 deletions(-)


diff --git a/Doc/library/thread.rst b/Doc/library/thread.rst
--- a/Doc/library/thread.rst
+++ b/Doc/library/thread.rst
@@ -159,10 +159,6 @@
 * 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:`file.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.
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list