diff options
author | Christian Clauss <cclauss@me.com> | 2021-10-05 21:48:44 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-05 21:48:44 (GMT) |
commit | 241bda785a092a272d7e0f6a4e20bd250c389cfe (patch) | |
tree | d1ec44882a46c83d3a91d6ce5e312954cffab269 /Doc/using | |
parent | 4c8d543823dde5a30615da61727837a48f7ab847 (diff) | |
download | cpython-241bda785a092a272d7e0f6a4e20bd250c389cfe.zip cpython-241bda785a092a272d7e0f6a4e20bd250c389cfe.tar.gz cpython-241bda785a092a272d7e0f6a4e20bd250c389cfe.tar.bz2 |
[doc] Fix typos found using codespell (GH-28744)
Co-authored-by: Ćukasz Langa <lukasz@langa.pl>
Diffstat (limited to 'Doc/using')
-rw-r--r-- | Doc/using/cmdline.rst | 4 | ||||
-rw-r--r-- | Doc/using/configure.rst | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Doc/using/cmdline.rst b/Doc/using/cmdline.rst index b42518e..23a645a 100644 --- a/Doc/using/cmdline.rst +++ b/Doc/using/cmdline.rst @@ -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 diff --git a/Doc/using/configure.rst b/Doc/using/configure.rst index a545d5a..a59bee4 100644 --- a/Doc/using/configure.rst +++ b/Doc/using/configure.rst @@ -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:: |