summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGregory P. Smith <greg@krypto.org>2024-11-11 06:39:58 (GMT)
committerGitHub <noreply@github.com>2024-11-11 06:39:58 (GMT)
commit5c488caeb858690a696bc9f74fc74a274a3aa51c (patch)
tree1cb29a68d28521398680a2c3572341600b5c0417
parent434b29767f2fdef9f35c8e93303cf6aca4a66a80 (diff)
downloadcpython-5c488caeb858690a696bc9f74fc74a274a3aa51c.zip
cpython-5c488caeb858690a696bc9f74fc74a274a3aa51c.tar.gz
cpython-5c488caeb858690a696bc9f74fc74a274a3aa51c.tar.bz2
gh-117378: Clear up the NEWS entry wording (GH-126634)
gh-117378: Clear up the NEWS entry wording. Docs are hard. Lets go shopping!
-rw-r--r--Misc/NEWS.d/next/Library/2024-11-07-01-40-11.gh-issue-117378.o9O5uM.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/Misc/NEWS.d/next/Library/2024-11-07-01-40-11.gh-issue-117378.o9O5uM.rst b/Misc/NEWS.d/next/Library/2024-11-07-01-40-11.gh-issue-117378.o9O5uM.rst
index cdbe21f..d7d4477 100644
--- a/Misc/NEWS.d/next/Library/2024-11-07-01-40-11.gh-issue-117378.o9O5uM.rst
+++ b/Misc/NEWS.d/next/Library/2024-11-07-01-40-11.gh-issue-117378.o9O5uM.rst
@@ -11,7 +11,7 @@ It could also have a side effect of ``""`` remaining in :data:`sys.path` during
forkserver preload imports instead of the absolute path from :func:`os.getcwd`
at multiprocessing import time used in the worker ``sys.path``.
-Potentially leading to incorrect imports from the wrong location during
-preload. We are unaware of that actually happening. The issue was discovered
-by someone observing unexpected preload performance gains.
+The ``sys.path`` differences between phases in the child process could
+potentially have caused preload to import incorrect things from the wrong
+location. We are unaware of that actually having happened in practice.