diff options
author | Christian Clauss <cclauss@me.com> | 2021-10-07 00:55:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-06 15:55:27 -0700 |
commit | db693df3e112c5a61f2cbef63eedce3a36520ded (patch) | |
tree | 9d9fde2302ea951001e2d7eed67e2648f1457208 /Python/import.c | |
parent | 6c942a86a4fb4c8b731cb1bd2933dba554eb79cd (diff) | |
download | cpython-db693df3e112c5a61f2cbef63eedce3a36520ded.tar.gz cpython-db693df3e112c5a61f2cbef63eedce3a36520ded.zip |
Fix typos in the Python directory (GH-28767)
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 a6170a39c7f..731f0f59118 100644 --- a/Python/import.c +++ b/Python/import.c @@ -2458,7 +2458,7 @@ _PyImport_BootstrapImp(PyThreadState *tstate) // Mock a ModuleSpec object just good enough for PyModule_FromDefAndSpec(): // an object with just a name attribute. // - // _imp.__spec__ is overriden by importlib._bootstrap._instal() anyway. + // _imp.__spec__ is overridden by importlib._bootstrap._instal() anyway. PyObject *attrs = Py_BuildValue("{sO}", "name", name); if (attrs == NULL) { goto error; |