summaryrefslogtreecommitdiffstats
path: root/Python/import.c
diff options
context:
space:
mode:
authorAntoine Pitrou <pitrou@free.fr>2017-05-28 09:35:14 (GMT)
committerGitHub <noreply@github.com>2017-05-28 09:35:14 (GMT)
commitf7ecfac0c15f0c43ef5e6c0081eb3a059af9f074 (patch)
treedc86efb4f9610d3bf9e6338170621bdd1f244f58 /Python/import.c
parenteca7da0f13c78013b924fe7306f3e2e59c0af40b (diff)
downloadcpython-f7ecfac0c15f0c43ef5e6c0081eb3a059af9f074.zip
cpython-f7ecfac0c15f0c43ef5e6c0081eb3a059af9f074.tar.gz
cpython-f7ecfac0c15f0c43ef5e6c0081eb3a059af9f074.tar.bz2
Doc nits for bpo-16500 (#1841)
* Doc nits for bpo-16500 * Fix more references
Diffstat (limited to 'Python/import.c')
-rw-r--r--Python/import.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/import.c b/Python/import.c
index 17a320b..9a78d6a 100644
--- a/Python/import.c
+++ b/Python/import.c
@@ -194,7 +194,7 @@ _PyImport_ReleaseLock(void)
return 1;
}
-/* This function is called from PyOS_AfterFork to ensure that newly
+/* This function is called from PyOS_AfterFork_Child to ensure that newly
created child processes do not share locks with the parent.
We now acquire the import lock around fork() calls but on some platforms
(Solaris 9 and earlier? see isue7242) that still left us with problems. */