summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian Curtin <brian.curtin@gmail.com>2011-01-31 19:55:14 (GMT)
committerBrian Curtin <brian.curtin@gmail.com>2011-01-31 19:55:14 (GMT)
commit37c4a723a41ba072ad81f622624e64c0b925b782 (patch)
tree2f128d5a65d920ba80fe91afc2f3b661e56f2d54
parent60651535c997bd3b55afb3b5718680ec2a404f69 (diff)
downloadcpython-37c4a723a41ba072ad81f622624e64c0b925b782.zip
cpython-37c4a723a41ba072ad81f622624e64c0b925b782.tar.gz
cpython-37c4a723a41ba072ad81f622624e64c0b925b782.tar.bz2
Merged revisions 88281 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r88281 | brian.curtin | 2011-01-31 13:35:02 -0600 (Mon, 31 Jan 2011) | 2 lines #11083 typo: RuntimeException -> RuntimeError ........
-rw-r--r--Doc/library/threading.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/threading.rst b/Doc/library/threading.rst
index 0766511..0b46349 100644
--- a/Doc/library/threading.rst
+++ b/Doc/library/threading.rst
@@ -290,7 +290,7 @@ impossible to detect the termination of alien threads.
It must be called at most once per thread object. It arranges for the
object's :meth:`run` method to be invoked in a separate thread of control.
- This method will raise a :exc:`RuntimeException` if called more than once
+ This method will raise a :exc:`RuntimeError` if called more than once
on the same thread object.
.. method:: run()