diff options
Diffstat (limited to 'Doc/library/_thread.rst')
-rw-r--r-- | Doc/library/_thread.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/_thread.rst b/Doc/library/_thread.rst index fae2781..2e130c1 100644 --- a/Doc/library/_thread.rst +++ b/Doc/library/_thread.rst @@ -177,7 +177,7 @@ In addition to these methods, lock objects can also be used via the 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`, + 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 |