1#include "Py.h" 2 3NAMESPACE_UPP 4 5INITBLOCK 6{ 7 Py_Initialize(); 8} 9 10EXITBLOCK 11{ 12 Py_Finalize(); 13} 14 15END_UPP_NAMESPACE 16