summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-12-12 12:47:25 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-12-12 12:47:25 (GMT)
commit9d57481f043cb9b94bfc45c1ee041415d915cf8a (patch)
tree4806f5aa23aa5f72bf9cafe2e1b438d69ccb1f51 /Include
parent16e6a80923db90031a50790613ef3673b30886d2 (diff)
downloadcpython-9d57481f043cb9b94bfc45c1ee041415d915cf8a.zip
cpython-9d57481f043cb9b94bfc45c1ee041415d915cf8a.tar.gz
cpython-9d57481f043cb9b94bfc45c1ee041415d915cf8a.tar.bz2
Issue #13577: various kinds of descriptors now have a __qualname__ attribute.
Patch by sbt.
Diffstat (limited to 'Include')
-rw-r--r--Include/descrobject.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/descrobject.h b/Include/descrobject.h
index 646b3cc..e2ba97f 100644
--- a/Include/descrobject.h
+++ b/Include/descrobject.h
@@ -42,6 +42,7 @@ typedef struct {
PyObject_HEAD
PyTypeObject *d_type;
PyObject *d_name;
+ PyObject *d_qualname;
} PyDescrObject;
#define PyDescr_COMMON PyDescrObject d_common