From: Kirill Podoprigora Date: Mon, 27 May 2024 11:35:36 +0000 (+0300) Subject: ``Include/internal/pycore_import.h``: Fix typo (#119586) X-Git-Tag: v3.14.0a1~1757 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c7a5e1e550a2a0bfa11dbf055ed4b7afb26b5fe9;p=thirdparty%2FPython%2Fcpython.git ``Include/internal/pycore_import.h``: Fix typo (#119586) Fix typo --- diff --git a/Include/internal/pycore_import.h b/Include/internal/pycore_import.h index bd40707fed21..f8329a460d6c 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(). */