diff options
author | Georg Brandl <georg@python.org> | 2009-08-27 19:02:43 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-08-27 19:02:43 (GMT) |
commit | e746daa2cb65df18dc4b8af8e3de878d60eb4ced (patch) | |
tree | 997518e87aeaa12e7af1f74fd04cdf7b8c0eebc1 /Doc/library | |
parent | 185bd225645caf25eb934c1cbb94a93a107c51d3 (diff) | |
download | cpython-e746daa2cb65df18dc4b8af8e3de878d60eb4ced.zip cpython-e746daa2cb65df18dc4b8af8e3de878d60eb4ced.tar.gz cpython-e746daa2cb65df18dc4b8af8e3de878d60eb4ced.tar.bz2 |
#6787: reference fix.
Diffstat (limited to 'Doc/library')
-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 3bcc755..f8b5850 100644 --- a/Doc/library/thread.rst +++ b/Doc/library/thread.rst @@ -156,7 +156,7 @@ In addition to these methods, lock objects can also be used via the module is available, interrupts always go to the main thread.) * Calling :func:`sys.exit` or raising the :exc:`SystemExit` exception is - equivalent to calling :func:`exit`. + 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`, |