mirror of https://github.com/python/cpython
gh-101670: typo fix in PyImport_ExtendInittab() (#101723)
Co-authored-by: Eric Snow <ericsnowcurrently@gmail.com>
This commit is contained in:
parent
ecfd2d37c5
commit
cb2411886a
|
@ -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 */
|
||||
|
|
Loading…
Reference in New Issue