summaryrefslogtreecommitdiffstats
path: root/Include/descrobject.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2001-08-23 21:40:38 (GMT)
committerGuido van Rossum <guido@python.org>2001-08-23 21:40:38 (GMT)
commit29a62dd6ebe48c4a5c7b4f7d6f0e8589d94a5a0d (patch)
tree4d48aa9a83d8d7183afe264b292e46e46c1c0d11 /Include/descrobject.h
parent0b13116a625d3a91e9f4507ed81f8b3575cdef8c (diff)
downloadcpython-29a62dd6ebe48c4a5c7b4f7d6f0e8589d94a5a0d.zip
cpython-29a62dd6ebe48c4a5c7b4f7d6f0e8589d94a5a0d.tar.gz
cpython-29a62dd6ebe48c4a5c7b4f7d6f0e8589d94a5a0d.tar.bz2
Add new built-in type 'getset' (PyGetSet_Type).
This implements the 'getset' class from test_binop.py.
Diffstat (limited to 'Include/descrobject.h')
-rw-r--r--Include/descrobject.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/Include/descrobject.h b/Include/descrobject.h
index b6fc521..03543ae 100644
--- a/Include/descrobject.h
+++ b/Include/descrobject.h
@@ -30,3 +30,6 @@ extern DL_IMPORT(int) PyDescr_IsData(PyObject *);
extern DL_IMPORT(PyObject *) PyDictProxy_New(PyObject *);
extern DL_IMPORT(PyObject *) PyWrapper_New(PyObject *, PyObject *);
+
+
+extern DL_IMPORT(PyTypeObject) PyGetSet_Type;