[Python-checkins] python/dist/src/Python pythonrun.c,2.172,2.173

Guido van Rossum guido@python.org
Mon, 30 Dec 2002 21:48:29 -0500


>     nnorwitz> +         if (!PyFrame_Init())
>     nnorwitz> +                 Py_FatalError("Py_Initialize: can't init frames");
>     nnorwitz> + 
>     nnorwitz> +         if (!PyInt_Init())
>     nnorwitz> +                 Py_FatalError("Py_Initialize: can't init ints");
>     nnorwitz> + 
> 
> Shouldn't those probably be _PyFrame_Init() and _PyInt_Init() (internal
> API)?  It's not like they're going to be called from anywhere else.

+1

--Guido van Rossum (home page: http://www.python.org/~guido/)