// -*- C++ -*- // // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ // // Michael A.G. Aivazis // California Institute of Technology // (C) 1998-2005 All Rights Reserved // // // // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ // //#include #include #include "exceptions.h" #include "bindings.h" char pyanalmodelpy_module__doc__[] = ""; // Initialization function for the module (*must* be called initanalmodelpy) extern "C" void initanalmodelpy() { // create the module and add the functions PyObject * m = Py_InitModule4( "analmodelpy", pyanalmodelpy_methods, pyanalmodelpy_module__doc__, 0, PYTHON_API_VERSION); // get its dictionary PyObject * d = PyModule_GetDict(m); // check for errors if (PyErr_Occurred()) { Py_FatalError("can't initialize module analmodelpy"); } // install the module exceptions pyanalmodelpy_runtimeError = PyErr_NewException("analmodelpy.runtime", 0, 0); PyDict_SetItemString(d, "RuntimeException", pyanalmodelpy_runtimeError); return; } // version // $Id$ // End of file