Lines Matching defs:module
2 /* interpreters module */
299 // XXX Move the exceptions into per-module memory?
1813 // XXX Move the exceptions into per-module memory?
1970 /* module level code ********************************************************/
1972 /* globals is the process-global state for the module. It holds all
2590 "This module provides primitive operations to manage Python interpreters.\n\
2591 The 'interpreters' module provides a more convenient interface.");
2618 /* Create the module */
2619 PyObject *module = PyModule_Create(&interpretersmodule);
2620 if (module == NULL) {
2625 PyObject *ns = PyModule_GetDict(module); // borrowed
2647 return module;