diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-04-18 22:15:26 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-04-18 22:15:26 (GMT) |
commit | 01c6e6fb354ec9bb2157ee4e02ecb5b165e64b76 (patch) | |
tree | 29cad8aa58e1e26401529f7d8549de2ebdc3279b /Include/descrobject.h | |
parent | accb3d0014cf4b4bebf3ae8f5a1c73e099c470f7 (diff) | |
download | cpython-01c6e6fb354ec9bb2157ee4e02ecb5b165e64b76.zip cpython-01c6e6fb354ec9bb2157ee4e02ecb5b165e64b76.tar.gz cpython-01c6e6fb354ec9bb2157ee4e02ecb5b165e64b76.tar.bz2 |
many more types to initialize (I had to expose some of them)
Diffstat (limited to 'Include/descrobject.h')
-rw-r--r-- | Include/descrobject.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Include/descrobject.h b/Include/descrobject.h index 0d444b6..718f9d5 100644 --- a/Include/descrobject.h +++ b/Include/descrobject.h @@ -68,6 +68,9 @@ typedef struct { } PyWrapperDescrObject; PyAPI_DATA(PyTypeObject) PyWrapperDescr_Type; +PyAPI_DATA(PyTypeObject) PyDictProxy_Type; +PyAPI_DATA(PyTypeObject) PyGetSetDescr_Type; +PyAPI_DATA(PyTypeObject) PyMemberDescr_Type; PyAPI_FUNC(PyObject *) PyDescr_NewMethod(PyTypeObject *, PyMethodDef *); PyAPI_FUNC(PyObject *) PyDescr_NewClassMethod(PyTypeObject *, PyMethodDef *); |