2 /* Dummy _tkinter module for use with Carbon. Gives (slightly) better error
3 * message when you try to use Tkinter.
11 /* List of functions defined in the module */
13 static PyMethodDef xx_methods
[] = {
14 {NULL
, NULL
} /* sentinel */
24 /* Create the module and add the functions */
25 m
= Py_InitModule("_tkinter", xx_methods
);
27 PyErr_SetString(PyExc_ImportError
, "Tkinter not supported under Carbon (yet).");