summaryrefslogtreecommitdiffstats
path: root/Python/import.c
diff options
context:
space:
mode:
authorChristian Clauss <cclauss@me.com>2021-10-07 15:30:08 (GMT)
committerGitHub <noreply@github.com>2021-10-07 15:30:08 (GMT)
commitccd82a080056f21da2041d4c5d0ac4421ad0c8a8 (patch)
treef2eafb028e085e2d7d62cc51c5ac2ae7d513e21c /Python/import.c
parent212140dceb72d40ba19e4aef089c707dbbcfd5cb (diff)
downloadcpython-ccd82a080056f21da2041d4c5d0ac4421ad0c8a8.zip
cpython-ccd82a080056f21da2041d4c5d0ac4421ad0c8a8.tar.gz
cpython-ccd82a080056f21da2041d4c5d0ac4421ad0c8a8.tar.bz2
[3.10] Fix typos in the Python directory (GH-28767) (GH-28799)
(cherry picked from commit db693df3e112c5a61f2cbef63eedce3a36520ded)
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 50f4956..acfe969 100644
--- a/Python/import.c
+++ b/Python/import.c
@@ -2195,7 +2195,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;