Export type objects to Python

This commit is contained in:
Jack Jansen 1997-09-20 17:40:22 +00:00
parent 6dd4868681
commit a755e68df6
19 changed files with 111 additions and 7 deletions

View file

@ -733,6 +733,10 @@ void initCtl()
if (Ctl_Error == NULL ||
PyDict_SetItemString(d, "Error", Ctl_Error) != 0)
Py_FatalError("can't initialize Ctl.Error");
Control_Type.ob_type = &PyType_Type;
Py_INCREF(&Control_Type);
if (PyDict_SetItemString(d, "ControlType", (PyObject *)&Control_Type) != 0)
Py_FatalError("can't initialize ControlType");
}
/* ========================= End module Ctl ========================= */