``Include/internal/pycore_import.h``: Fix typo (#119586)

Fix typo
This commit is contained in:
Kirill Podoprigora 2024-05-27 14:35:36 +03:00 committed by GitHub
parent 5ef5622543
commit c7a5e1e550
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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(). */