summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKirill Podoprigora <kirill.bast9@mail.ru>2024-05-27 11:35:36 (GMT)
committerGitHub <noreply@github.com>2024-05-27 11:35:36 (GMT)
commitc7a5e1e550a2a0bfa11dbf055ed4b7afb26b5fe9 (patch)
tree3f9dfc89c6f53701cfdd5fde59287e52721d005b
parent5ef5622543844bad1f9bc770ddaaddd2615b8466 (diff)
downloadcpython-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.h2
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(). */