mirror of
https://github.com/python/cpython
synced 2026-09-26 16:21:04 +03:00
5 lines
304 B
ReStructuredText
5 lines
304 B
ReStructuredText
Extension modules may indicate to the runtime that they can run without the
|
|
GIL. Multi-phase init modules do so by calling providing
|
|
``Py_MOD_GIL_NOT_USED`` for the ``Py_mod_gil`` slot, while single-phase init
|
|
modules call ``PyUnstable_Module_SetGIL(mod, Py_MOD_GIL_NOT_USED)`` from
|
|
their init function.
|