summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
Diffstat (limited to 'Python')
-rw-r--r--Python/pythonrun.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c
index 81543cc..fba3ade 100644
--- a/Python/pythonrun.c
+++ b/Python/pythonrun.c
@@ -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();