[doc] Fix typos found using codespell (GH-28744)

Co-authored-by: Łukasz Langa <lukasz@langa.pl>
This commit is contained in:
Christian Clauss 2021-10-05 23:48:44 +02:00 committed by GitHub
parent 4c8d543823
commit 241bda785a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
16 changed files with 22 additions and 22 deletions

View file

@ -477,7 +477,7 @@ Miscellaneous options
* ``-X no_debug_ranges`` disables the inclusion of the tables mapping extra
location information (end line, start column offset and end column offset)
to every instruction in code objects. This is useful when smaller code
objects and pyc files are desired as well as supressing the extra visual
objects and pyc files are desired as well as suppressing the extra visual
location indicators when the interpreter displays tracebacks. See also
:envvar:`PYTHONNODEBUGRANGES`.
* ``-X frozen_modules`` determines whether or not frozen modules are
@ -959,7 +959,7 @@ conflict.
If this variable is set, it disables the inclusion of the tables mapping
extra location information (end line, start column offset and end column
offset) to every instruction in code objects. This is useful when smaller
code objects and pyc files are desired as well as supressing the extra visual
code objects and pyc files are desired as well as suppressing the extra visual
location indicators when the interpreter displays tracebacks.
.. versionadded:: 3.11

View file

@ -553,7 +553,7 @@ Built-in modules have no ``__file__`` attribute::
File "<stdin>", line 1, in <module>
AttributeError: module 'sys' has no attribute '__file__'
Other C extensions are built as dynamic libraires, like the ``_asyncio`` module.
Other C extensions are built as dynamic libraries, like the ``_asyncio`` module.
They are built with the ``Py_BUILD_CORE_MODULE`` macro defined.
Example on Linux x86-64::