cpython/Objects/typeobject.c

58 lines
1.3 KiB
C
Raw Normal View History

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