summaryrefslogtreecommitdiff
path: root/Lib/threading.py
diff options
context:
space:
mode:
authorAntoine Pitrou <pitrou@free.fr>2017-05-28 11:35:14 +0200
committerGitHub <noreply@github.com>2017-05-28 11:35:14 +0200
commitf7ecfac0c15f0c43ef5e6c0081eb3a059af9f074 (patch)
treedc86efb4f9610d3bf9e6338170621bdd1f244f58 /Lib/threading.py
parenteca7da0f13c78013b924fe7306f3e2e59c0af40b (diff)
downloadcpython-git-f7ecfac0c15f0c43ef5e6c0081eb3a059af9f074.tar.gz
Doc nits for bpo-16500 (#1841)
* Doc nits for bpo-16500 * Fix more references
Diffstat (limited to 'Lib/threading.py')
-rw-r--r--Lib/threading.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/threading.py b/Lib/threading.py
index 929a4b0066..0b594644a4 100644
--- a/Lib/threading.py
+++ b/Lib/threading.py
@@ -1320,8 +1320,8 @@ except ImportError:
def _after_fork():
# This function is called by Python/ceval.c:PyEval_ReInitThreads which
- # is called from PyOS_AfterFork. Here we cleanup threading module state
- # that should not exist after a fork.
+ # is called from PyOS_AfterFork_Child. Here we cleanup threading module
+ # state that should not exist after a fork.
# Reset _active_limbo_lock, in case we forked while the lock was held
# by another (non-forked) thread. http://bugs.python.org/issue874900