1991-02-19 08:39:46 -04:00
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
/* Type object implementation */
|
|
|
|
|
1997-05-02 00:12:38 -03:00
|
|
|
#include "Python.h"
|
1990-10-14 09:07:46 -03:00
|
|
|
|
|
|
|
/* Type object implementation */
|
|
|
|
|
1997-05-02 00:12:38 -03:00
|
|
|
static PyObject *
|
2000-07-09 03:21:27 -03:00
|
|
|
type_getattr(PyTypeObject *t, char *name)
|
1995-01-07 07:58:15 -04:00
|
|
|
{
|
|
|
|
if (strcmp(name, "__name__") == 0)
|
1997-05-02 00:12:38 -03:00
|
|
|
return PyString_FromString(t->tp_name);
|
1995-01-07 07:58:15 -04:00
|
|
|
if (strcmp(name, "__doc__") == 0) {
|
|
|
|
char *doc = t->tp_doc;
|
|
|
|
if (doc != NULL)
|
1997-05-02 00:12:38 -03:00
|
|
|
return PyString_FromString(doc);
|
|
|
|
Py_INCREF(Py_None);
|
|
|
|
return Py_None;
|
1995-01-07 07:58:15 -04:00
|
|
|
}
|
|
|
|
if (strcmp(name, "__members__") == 0)
|
1997-05-02 00:12:38 -03:00
|
|
|
return Py_BuildValue("[ss]", "__doc__", "__name__");
|
|
|
|
PyErr_SetString(PyExc_AttributeError, name);
|
1995-01-07 07:58:15 -04:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
1997-05-02 00:12:38 -03:00
|
|
|
static PyObject *
|
2000-07-09 03:21:27 -03:00
|
|
|
type_repr(PyTypeObject *v)
|
1990-10-14 09:07:46 -03:00
|
|
|
{
|
|
|
|
char buf[100];
|
|
|
|
sprintf(buf, "<type '%.80s'>", v->tp_name);
|
1997-05-02 00:12:38 -03:00
|
|
|
return PyString_FromString(buf);
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
|
1997-05-02 00:12:38 -03:00
|
|
|
PyTypeObject PyType_Type = {
|
|
|
|
PyObject_HEAD_INIT(&PyType_Type)
|
1990-10-14 09:07:46 -03:00
|
|
|
0, /* Number of items for varobject */
|
|
|
|
"type", /* Name of this type */
|
1997-05-02 00:12:38 -03:00
|
|
|
sizeof(PyTypeObject), /* Basic object size */
|
1990-10-14 09:07:46 -03:00
|
|
|
0, /* Item size for varobject */
|
1990-12-20 11:06:42 -04:00
|
|
|
0, /*tp_dealloc*/
|
1992-09-17 14:54:56 -03:00
|
|
|
0, /*tp_print*/
|
1995-01-07 07:58:15 -04:00
|
|
|
(getattrfunc)type_getattr, /*tp_getattr*/
|
1990-12-20 11:06:42 -04:00
|
|
|
0, /*tp_setattr*/
|
|
|
|
0, /*tp_compare*/
|
1995-01-07 07:58:15 -04:00
|
|
|
(reprfunc)type_repr, /*tp_repr*/
|
|
|
|
0, /*tp_as_number*/
|
|
|
|
0, /*tp_as_sequence*/
|
|
|
|
0, /*tp_as_mapping*/
|
|
|
|
0, /*tp_hash*/
|
|
|
|
0, /*tp_call*/
|
|
|
|
0, /*tp_str*/
|
|
|
|
0, /*tp_xxx1*/
|
|
|
|
0, /*tp_xxx2*/
|
|
|
|
0, /*tp_xxx3*/
|
|
|
|
0, /*tp_xxx4*/
|
1997-06-02 11:43:07 -03:00
|
|
|
"Define the behavior of a particular type of object.",
|
1990-10-14 09:07:46 -03:00
|
|
|
};
|