aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Python/import.c
diff options
context:
space:
mode:
authorChristian Clauss <cclauss@me.com>2021-10-07 00:55:27 +0200
committerGitHub <noreply@github.com>2021-10-06 15:55:27 -0700
commitdb693df3e112c5a61f2cbef63eedce3a36520ded (patch)
tree9d9fde2302ea951001e2d7eed67e2648f1457208 /Python/import.c
parent6c942a86a4fb4c8b731cb1bd2933dba554eb79cd (diff)
downloadcpython-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.c2
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;