diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2002-12-31 03:42:13 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2002-12-31 03:42:13 (GMT) |
commit | b2501f4cd18f65cc671482ceb1abe88c289b664c (patch) | |
tree | 5e661dfd4229e4eeb41d07fcc58a2040208b95ab /Python | |
parent | 744f0fd655cd55676532119894e2845d0533608b (diff) | |
download | cpython-b2501f4cd18f65cc671482ceb1abe88c289b664c.zip cpython-b2501f4cd18f65cc671482ceb1abe88c289b664c.tar.gz cpython-b2501f4cd18f65cc671482ceb1abe88c289b664c.tar.bz2 |
Since the *_Init() are private, prefix with _, suggested by Skip
Diffstat (limited to 'Python')
-rw-r--r-- | Python/pythonrun.c | 4 |
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(); |