diff options
author | Xie Yanbo <xieyanbo@gmail.com> | 2024-06-04 18:22:22 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-04 10:22:22 +0000 |
commit | 9e052619a6d32051394444c24d3185db1735a893 (patch) | |
tree | 0e978a83eadc1155de9f2435ecd6c32c1faeae99 /Python/import.c | |
parent | 5a1205b641df133932ed4c65b9a4ff5724e89963 (diff) | |
download | cpython-9e052619a6d32051394444c24d3185db1735a893.tar.gz cpython-9e052619a6d32051394444c24d3185db1735a893.zip |
Fix typos in documentation and comments (#119763)
Diffstat (limited to 'Python/import.c')
-rw-r--r-- | Python/import.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/import.c b/Python/import.c index 6fe6df4db4f..351d463dcab 100644 --- a/Python/import.c +++ b/Python/import.c @@ -1961,7 +1961,7 @@ import_run_extension(PyThreadState *tstate, PyModInitFunction p0, * * However, for single-phase init the module's init function will * create the module, create other objects (and allocate other - * memory), populate it and its module state, and initialze static + * memory), populate it and its module state, and initialize static * types. Some modules store other objects and data in global C * variables and register callbacks with the runtime/stdlib or * even external libraries (which is part of why we can't just |