// -*- C++ -*- // // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ // // Michael A.G. Aivazis // California Institute of Technology // (C) 1998-2005 All Rights Reserved // // // // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ // //#include #include #include "exceptions.h" #include "bindings.h" char pyiqPy_module__doc__[] = ""; // Initialization function for the module (*must* be called initiqPy) extern "C" void initiqPy() { // create the module and add the functions PyObject * m = Py_InitModule4( "iqPy", pyiqPy_methods, pyiqPy_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 iqPy"); } // install the module exceptions pyiqPy_runtimeError = PyErr_NewException("iqPy.runtime", 0, 0); PyDict_SetItemString(d, "RuntimeException", pyiqPy_runtimeError); return; } // version // $Id$ // End of file