cpython/Objects/typeobject.c

67 lines
1.7 KiB
C
Raw Normal View History

1991-02-19 08:39:46 -04:00
/***********************************************************
2000-06-30 20:50:40 -03:00
Copyright (c) 2000, BeOpen.com.
Copyright (c) 1995-2000, Corporation for National Research Initiatives.
Copyright (c) 1990-1995, Stichting Mathematisch Centrum.
All rights reserved.
See the file "Misc/COPYRIGHT" for information on usage and
redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
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)
{
if (strcmp(name, "__name__") == 0)
1997-05-02 00:12:38 -03:00
return PyString_FromString(t->tp_name);
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;
}
if (strcmp(name, "__members__") == 0)
1997-05-02 00:12:38 -03:00
return Py_BuildValue("[ss]", "__doc__", "__name__");
PyErr_SetString(PyExc_AttributeError, name);
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*/
0, /*tp_print*/
(getattrfunc)type_getattr, /*tp_getattr*/
1990-12-20 11:06:42 -04: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 11:43:07 -03:00
"Define the behavior of a particular type of object.",
1990-10-14 09:07:46 -03:00
};