]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
``Include/internal/pycore_import.h``: Fix typo (#119586)
authorKirill Podoprigora <kirill.bast9@mail.ru>
Mon, 27 May 2024 11:35:36 +0000 (14:35 +0300)
committerGitHub <noreply@github.com>
Mon, 27 May 2024 11:35:36 +0000 (17:05 +0530)
Fix typo

Include/internal/pycore_import.h

index bd40707fed21a8ee5d1700d3fcfab98ae2ca5c75..f8329a460d6cbff778ad21e2ca8d520db4c4bd16 100644 (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(). */