mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
Since the *_Init() are private, prefix with _, suggested by Skip
This commit is contained in:
parent
744f0fd655
commit
b2501f4cd1
5 changed files with 6 additions and 6 deletions
|
@ -124,10 +124,10 @@ Py_Initialize(void)
|
|||
|
||||
_Py_ReadyTypes();
|
||||
|
||||
if (!PyFrame_Init())
|
||||
if (!_PyFrame_Init())
|
||||
Py_FatalError("Py_Initialize: can't init frames");
|
||||
|
||||
if (!PyInt_Init())
|
||||
if (!_PyInt_Init())
|
||||
Py_FatalError("Py_Initialize: can't init ints");
|
||||
|
||||
interp->modules = PyDict_New();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue