0
0
mirror of https://github.com/python/cpython.git synced 2024-12-01 11:15:56 +01:00
cpython/Objects/typeobject.c

58 lines
1.3 KiB
C
Raw Normal View History

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