diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2002-12-31 03:42:13 +0000 |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2002-12-31 03:42:13 +0000 |
commit | 7b445fafa8ec87f2c776e6feb256590eddbf0343 (patch) | |
tree | 0365c54f5d6a8d793a6998bc8752243a445310ae /Python/pythonrun.c | |
parent | a743ed47fc734c80a48f8c7832bc831f36cd4df8 (diff) | |
download | cpython-7b445fafa8ec87f2c776e6feb256590eddbf0343.tar.gz |
Since the *_Init() are private, prefix with _, suggested by Skip
Diffstat (limited to 'Python/pythonrun.c')
-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 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(); |