summaryrefslogtreecommitdiffstats
path: root/Lib/multiprocessing/util.py
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2012-12-18 19:14:22 (GMT)
committerAndrew Svetlov <andrew.svetlov@gmail.com>2012-12-18 19:14:22 (GMT)
commit737fb89dd15e4db6ef30d25963e774ae09cc49dc (patch)
tree422450a087195dbb9e33c7d73d96fd2f1a5f1fcd /Lib/multiprocessing/util.py
parent4001e96179543cf056613e65dcedc63716c6bc21 (diff)
downloadcpython-737fb89dd15e4db6ef30d25963e774ae09cc49dc.zip
cpython-737fb89dd15e4db6ef30d25963e774ae09cc49dc.tar.gz
cpython-737fb89dd15e4db6ef30d25963e774ae09cc49dc.tar.bz2
Issue #16714: use 'raise' exceptions, don't 'throw'.
Patch by Serhiy Storchaka.
Diffstat (limited to 'Lib/multiprocessing/util.py')
-rw-r--r--Lib/multiprocessing/util.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/multiprocessing/util.py b/Lib/multiprocessing/util.py
index 20bba37..61b0533 100644
--- a/Lib/multiprocessing/util.py
+++ b/Lib/multiprocessing/util.py
@@ -301,7 +301,7 @@ def _exit_function(info=info, debug=debug, _run_finalizers=_run_finalizers,
_run_finalizers(0)
if current_process() is not None:
# We check if the current process is None here because if
- # it's None, any call to ``active_children()`` will throw an
+ # it's None, any call to ``active_children()`` will raise an
# AttributeError (active_children winds up trying to get
# attributes from util._current_process). This happens in a
# variety of shutdown circumstances that are not well-understood