diff options
author | Tushar Sadhwani <tushar.sadhwani000@gmail.com> | 2023-01-18 16:24:56 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-18 16:24:56 (GMT) |
commit | d65f48507045c87000c65dc2c4fa727f483caad6 (patch) | |
tree | e6b86d9deb8f36c1eb004312a09ad469643a673b | |
parent | b84be8d9c0e6eca37be14c38250580251a3ef908 (diff) | |
download | cpython-d65f48507045c87000c65dc2c4fa727f483caad6.zip cpython-d65f48507045c87000c65dc2c4fa727f483caad6.tar.gz cpython-d65f48507045c87000c65dc2c4fa727f483caad6.tar.bz2 |
fix typo in 3.12 What's New (#101105)
-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 72a3ad9..0c85aef 100644 --- a/Doc/whatsnew/3.12.rst +++ b/Doc/whatsnew/3.12.rst @@ -157,7 +157,7 @@ Other Language Changes in :gh:`96670`.) * The Garbage Collector now runs only on the eval breaker mechanism of the - Python bytecode evaluation loop instead on object allocations. The GC can + Python bytecode evaluation loop instead of object allocations. The GC can also run when :c:func:`PyErr_CheckSignals` is called so C extensions that need to run for a long time without executing any Python code also have a chance to execute the GC periodically. (Contributed by Pablo Galindo in |