diff options
author | Brian Curtin <brian.curtin@gmail.com> | 2011-01-31 19:35:02 (GMT) |
---|---|---|
committer | Brian Curtin <brian.curtin@gmail.com> | 2011-01-31 19:35:02 (GMT) |
commit | bd0c897332faddce4ebdd4698f976c99a70ec346 (patch) | |
tree | 8d60ff97fcc77b9451d71c4536f60690ca3845e0 /Doc/library/threading.rst | |
parent | f0313560e05b79bc7340f36885d1aef3dce0a362 (diff) | |
download | cpython-bd0c897332faddce4ebdd4698f976c99a70ec346.zip cpython-bd0c897332faddce4ebdd4698f976c99a70ec346.tar.gz cpython-bd0c897332faddce4ebdd4698f976c99a70ec346.tar.bz2 |
#11083 typo: RuntimeException -> RuntimeError
Diffstat (limited to 'Doc/library/threading.rst')
-rw-r--r-- | Doc/library/threading.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/threading.rst b/Doc/library/threading.rst index f50c2ac..5f1b9bf 100644 --- a/Doc/library/threading.rst +++ b/Doc/library/threading.rst @@ -284,7 +284,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() |