gh-120178: Documentation typo corrections (#120179)

This commit is contained in:
David Lowry-Duda 2024-06-06 17:35:24 -04:00 committed by GitHub
parent e21057b999
commit 5bdc87b885
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View file

@ -594,7 +594,7 @@ Glossary
therefore it is never deallocated.
Built-in strings and singletons are immortal objects. For example,
:const:`True` and :const:`None` singletons are immmortal.
:const:`True` and :const:`None` singletons are immortal.
See `PEP 683 Immortal Objects, Using a Fixed Refcount
<https://peps.python.org/pep-0683/>`_ for more information.

View file

@ -1667,7 +1667,7 @@ iterations of the loop.
A no-op. Performs internal tracing, debugging and optimization checks.
The ``context`` oparand consists of two parts. The lowest two bits
The ``context`` operand consists of two parts. The lowest two bits
indicate where the ``RESUME`` occurs:
* ``0`` The start of a function, which is neither a generator, coroutine

View file

@ -341,7 +341,7 @@ can be overridden by the local file.
With a *lineno* argument, set a break at line *lineno* in the current file.
The line number may be prefixed with a *filename* and a colon,
to specify a breakpoint in another file (possibly one that hasn't been loaded
yet). The file is searched on :data:`sys.path`. Accepatable forms of *filename*
yet). The file is searched on :data:`sys.path`. Acceptable forms of *filename*
are ``/abspath/to/file.py``, ``relpath/file.py``, ``module`` and
``package.module``.