commit | 9d57481f043cb9b94bfc45c1ee041415d915cf8a | [log] [tgz] |
---|---|---|
author | Antoine Pitrou <solipsis@pitrou.net> | Mon Dec 12 13:47:25 2011 +0100 |
committer | Antoine Pitrou <solipsis@pitrou.net> | Mon Dec 12 13:47:25 2011 +0100 |
tree | 4806f5aa23aa5f72bf9cafe2e1b438d69ccb1f51 | |
parent | 16e6a80923db90031a50790613ef3673b30886d2 [diff] [blame] |
Issue #13577: various kinds of descriptors now have a __qualname__ attribute. Patch by sbt.
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 @@ PyObject_HEAD PyTypeObject *d_type; PyObject *d_name; + PyObject *d_qualname; } PyDescrObject; #define PyDescr_COMMON PyDescrObject d_common