From b2501f4cd18f65cc671482ceb1abe88c289b664c Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Tue, 31 Dec 2002 03:42:13 +0000 Subject: Since the *_Init() are private, prefix with _, suggested by Skip --- Python/pythonrun.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Python/pythonrun.c') diff --git a/Python/pythonrun.c b/Python/pythonrun.c index 81543cc86f..fba3ade800 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(); -- cgit v1.2.1