mirror of
https://github.com/python/cpython.git
synced 2026-01-06 07:22:09 +00:00
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
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue