diff options
author | Kirill Podoprigora <kirill.bast9@mail.ru> | 2024-05-27 11:35:36 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-27 11:35:36 (GMT) |
commit | c7a5e1e550a2a0bfa11dbf055ed4b7afb26b5fe9 (patch) | |
tree | 3f9dfc89c6f53701cfdd5fde59287e52721d005b | |
parent | 5ef5622543844bad1f9bc770ddaaddd2615b8466 (diff) | |
download | cpython-c7a5e1e550a2a0bfa11dbf055ed4b7afb26b5fe9.zip cpython-c7a5e1e550a2a0bfa11dbf055ed4b7afb26b5fe9.tar.gz cpython-c7a5e1e550a2a0bfa11dbf055ed4b7afb26b5fe9.tar.bz2 |
``Include/internal/pycore_import.h``: Fix typo (#119586)
Fix typo
-rw-r--r-- | Include/internal/pycore_import.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/internal/pycore_import.h b/Include/internal/pycore_import.h index bd40707..f8329a4 100644 --- a/Include/internal/pycore_import.h +++ b/Include/internal/pycore_import.h @@ -50,7 +50,7 @@ struct _import_runtime_state { PyMutex mutex; /* The actual cache of (filename, name, PyModuleDef) for modules. Only legacy (single-phase init) extension modules are added - and only if they support multiple initialization (m_size >- 0) + and only if they support multiple initialization (m_size >= 0) or are imported in the main interpreter. This is initialized lazily in fix_up_extension() in import.c. Modules are added there and looked up in _imp.find_extension(). */ |