Exceptions raised during renaming in rotating file handlers are now passed to handleE...
[python.git] / Modules / ccpython.cc
bloba6e97ff6a50d98e9f8ce4807cbb37c1e0999c0ce
1 /* Minimal main program -- everything is loaded from the library */
3 #include "Python.h"
5 extern "C"
6 DL_EXPORT(int) Py_Main( int argc, char *argv[] );
8 int main( int argc, char *argv[] )
10 return Py_Main(argc, argv);