gh-101670: typo fix in PyImport_ExtendInittab() (#101723)

Co-authored-by: Eric Snow <ericsnowcurrently@gmail.com>
This commit is contained in:
Sergey B Kirpichev 2023-02-09 19:49:02 +03:00 committed by GitHub
parent ecfd2d37c5
commit cb2411886a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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 */