diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2024-05-26 08:20:37 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-26 08:20:37 (GMT) |
commit | 3f0198d927398ca843097bc2b03aa616a7d35c6e (patch) | |
tree | fe86992b337a544bdfac1f8de2e4721e15ff97a2 /Doc/whatsnew/3.12.rst | |
parent | 2404cd94603bc585e617f0544e34560fa15b2713 (diff) | |
download | cpython-3f0198d927398ca843097bc2b03aa616a7d35c6e.zip cpython-3f0198d927398ca843097bc2b03aa616a7d35c6e.tar.gz cpython-3f0198d927398ca843097bc2b03aa616a7d35c6e.tar.bz2 |
[3.13] docs: fix a few typos identified by codespell (GH-119516) (#119570)
Co-authored-by: Ned Batchelder <ned@nedbatchelder.com>
Diffstat (limited to 'Doc/whatsnew/3.12.rst')
-rw-r--r-- | Doc/whatsnew/3.12.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.12.rst b/Doc/whatsnew/3.12.rst index bf43931..d9a314e 100644 --- a/Doc/whatsnew/3.12.rst +++ b/Doc/whatsnew/3.12.rst @@ -1251,7 +1251,7 @@ Deprecated :exc:`DeprecationWarning` when it can detect being called from a multithreaded process. There has always been a fundamental incompatibility with the POSIX platform when doing so. Even if such code *appeared* to work. - We added the warning to to raise awareness as issues encounted by code doing + We added the warning to raise awareness as issues encountered by code doing this are becoming more frequent. See the :func:`os.fork` documentation for more details along with `this discussion on fork being incompatible with threads <https://discuss.python.org/t/33555>`_ for *why* we're now surfacing this |