https://github.com/python/cpython/commit/c7a5e1e550a2a0bfa11dbf055ed4b7afb26b5fe9
commit: c7a5e1e550a2a0bfa11dbf055ed4b7afb26b5fe9
branch: main
author: Kirill Podoprigora <[email protected]>
committer: kumaraditya303 <[email protected]>
date: 2024-05-27T17:05:36+05:30
summary:

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

Fix typo

files:
M Include/internal/pycore_import.h

diff --git a/Include/internal/pycore_import.h b/Include/internal/pycore_import.h
index bd40707fed21a8..f8329a460d6cbf 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(). */

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: [email protected]

Reply via email to