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