CMCONST("cmStatusListenPend", 0x2000);
CMCONST("cmStatusIncomingCallPresent", 0x4000);
- ErrorObject = PyString_FromString("ctb.error");
+ ErrorObject = PyErr_NewException("ctb.error", NULL, NULL);
PyDict_SetItemString(d, "error", ErrorObject);
ctbcmtype.ob_type = &PyType_Type;
Py_INCREF(&ctbcmtype);
PyDict_SetItemString(d, "CTBConnectionMgrType", (PyObject *)&ctbcmtype);
-
- /* Check for errors */
- if (PyErr_Occurred())
- Py_FatalError("can't initialize module ctb");
}
/* Add some symbolic constants to the module */
d = PyModule_GetDict(m);
- ErrorObject = PyString_FromString("macfs.error");
+ ErrorObject = PyErr_NewException("macfs.error", NULL, NULL);
PyDict_SetItemString(d, "error", ErrorObject);
Mfsatype.ob_type = &PyType_Type;
Py_INCREF(&Mfsitype);
PyDict_SetItemString(d, "FInfoType", (PyObject *)&Mfsitype);
/* XXXX Add constants here */
-
- /* Check for errors */
- if (PyErr_Occurred())
- Py_FatalError("can't initialize module macfs");
}
d = PyModule_GetDict(m);
/* Initialize mac.error exception */
- MacError = PyString_FromString("mac.error");
- if (MacError == NULL || PyDict_SetItemString(d, "error", MacError) != 0)
- Py_FatalError("can't define mac.error");
+ MacError = PyErr_NewException("mac.error", NULL, NULL);
+ PyDict_SetItemString(d, "error", MacError);
}
/* Add some symbolic constants to the module */
d = PyModule_GetDict(m);
- ms_error_object = PyString_FromString("macspeech.error");
+ ms_error_object = PyErr_NewException("macspeech.error", NULL, NULL);
PyDict_SetItemString(d, "error", ms_error_object);
-
- /* Check for errors */
- if (PyErr_Occurred())
- Py_FatalError("can't initialize module macspeech");
}