]> granicus.if.org Git - python/commitdiff
Issue #22006: Remove outdated thread module caveat. Thanks Dan O'Reilly for the...
authorMark Dickinson <dickinsm@gmail.com>
Sat, 19 Jul 2014 20:47:13 +0000 (21:47 +0100)
committerMark Dickinson <dickinsm@gmail.com>
Sat, 19 Jul 2014 20:47:13 +0000 (21:47 +0100)
Doc/library/thread.rst

index 15859d1f261440011047c08f6087071a236d27cb..8a625f8a5bb7bf7c4aa130cb275dc6be7791937e 100644 (file)
@@ -159,10 +159,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:`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.