Home | History | Annotate | Download | only in python

Lines Matching defs:module

152                  * when the python module was imported
836 /* Python module registers a single callback and manages the list of
3909 PyObject *module;
3912 module = PyModule_Create(&moduledef);
3914 /* intialize the python extension module */
3915 module = Py_InitModule((char *) "libxml2mod", libxmlMethods);
3917 if (module == NULL)
3932 return module;