[Python-checkins] r74555 - python/trunk/Doc/library/thread.rst

georg.brandl python-checkins at python.org
Thu Aug 27 21:02:44 CEST 2009


Author: georg.brandl
Date: Thu Aug 27 21:02:43 2009
New Revision: 74555

Log:
#6787: reference fix.

Modified:
   python/trunk/Doc/library/thread.rst

Modified: python/trunk/Doc/library/thread.rst
==============================================================================
--- python/trunk/Doc/library/thread.rst	(original)
+++ python/trunk/Doc/library/thread.rst	Thu Aug 27 21:02:43 2009
@@ -156,7 +156,7 @@
   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`,


More information about the Python-checkins mailing list