From: Sergey B Kirpichev Date: Thu, 9 Feb 2023 16:49:02 +0000 (+0300) Subject: gh-101670: typo fix in PyImport_ExtendInittab() (#101723) X-Git-Tag: v3.12.0a6~201 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=cb2411886a181d25e0cff2c870f331d2949874d5;p=thirdparty%2FPython%2Fcpython.git gh-101670: typo fix in PyImport_ExtendInittab() (#101723) Co-authored-by: Eric Snow --- diff --git a/Python/import.c b/Python/import.c index 795d36896648..302255d76edc 100644 --- a/Python/import.c +++ b/Python/import.c @@ -2651,7 +2651,7 @@ PyImport_ExtendInittab(struct _inittab *newtab) int res = 0; if (_PyRuntime.imports.inittab != NULL) { - Py_FatalError("PyImport_ExtendInittab() may be be called after Py_Initialize()"); + Py_FatalError("PyImport_ExtendInittab() may not be called after Py_Initialize()"); } /* Count the number of entries in both tables */