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

armin.rigo python-checkins at python.org
Fri Oct 10 10:40:44 CEST 2008


Author: armin.rigo
Date: Fri Oct 10 10:40:44 2008
New Revision: 66870

Log:
Typo: "ThreadError" is the name in the C source.


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	Fri Oct 10 10:40:44 2008
@@ -99,7 +99,7 @@
    *size* argument specifies the stack size to be used for subsequently created
    threads, and must be 0 (use platform or configured default) or a positive
    integer value of at least 32,768 (32kB). If changing the thread stack size is
-   unsupported, a :exc:`ThreadError` is raised.  If the specified stack size is
+   unsupported, the :exc:`error` exception is raised.  If the specified stack size is
    invalid, a :exc:`ValueError` is raised and the stack size is unmodified.  32kB
    is currently the minimum supported stack size value to guarantee sufficient
    stack space for the interpreter itself.  Note that some platforms may have


More information about the Python-checkins mailing list