File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -227,7 +227,7 @@ Effects of a debug build:
227227* Install :ref: `debug hooks on memory allocators <default-memory-allocators >`
228228 to detect buffer overflow and other memory errors.
229229* Define ``Py_DEBUG `` and ``Py_REF_DEBUG `` macros.
230- * Add runtime checks: code surroundeded by ``#ifdef Py_DEBUG `` and ``#endif ``.
230+ * Add runtime checks: code surrounded by ``#ifdef Py_DEBUG `` and ``#endif ``.
231231 Enable ``assert(...) `` and ``_PyObject_ASSERT(...) `` assertions: don't set
232232 the ``NDEBUG `` macro (see also the :option: `--with-assertions ` configure
233233 option). Main runtime checks:
@@ -550,7 +550,7 @@ Built-in modules have no ``__file__`` attribute::
550550 File "<stdin>", line 1, in <module>
551551 AttributeError: module 'sys' has no attribute '__file__'
552552
553- Other C extensins are built as dynamic libraires, like the ``_asyncio `` module.
553+ Other C extensions are built as dynamic libraires, like the ``_asyncio `` module.
554554They are built with the ``Py_BUILD_CORE_MODULE `` macro defined.
555555Example on Linux x86-64::
556556
You can’t perform that action at this time.
0 commit comments