Skip to content

Commit

Permalink
Include/internal/pycore_import.h: Fix typo (python#119586)
Browse files Browse the repository at this point in the history
Fix typo
  • Loading branch information
Eclips4 authored May 27, 2024
1 parent 5ef5622 commit c7a5e1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Include/internal/pycore_import.h
Original file line number Diff line number Diff line change
Expand Up @@ -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(). */
Expand Down

0 comments on commit c7a5e1e

Please sign in to comment.