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

Skip Montanaro skip@pobox.com
Mon, 30 Dec 2002 20:41:58 -0600


  
    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.

Skip