diff options
author | Benjamin Peterson <benjamin@python.org> | 2012-02-20 00:59:10 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2012-02-20 00:59:10 (GMT) |
commit | 8eb1269c346fa860acce9459c0bed065ffccd3ce (patch) | |
tree | 186cdf221973397a4968a4c16d78d3298ff2011b /Misc/NEWS | |
parent | 4a57846efe1419843a5e1a35a9f098bab6b066c9 (diff) | |
download | cpython-8eb1269c346fa860acce9459c0bed065ffccd3ce.zip cpython-8eb1269c346fa860acce9459c0bed065ffccd3ce.tar.gz cpython-8eb1269c346fa860acce9459c0bed065ffccd3ce.tar.bz2 |
add generic implementation of a __dict__ descriptor for C types
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -2253,6 +2253,10 @@ Tests C-API ----- +- Add PyObject_GenericGetDict and PyObject_GeneriSetDict. They are generic + implementations for the getter and setter of a ``__dict__`` descriptor of C + types. + - Issue #13727: Add 3 macros to access PyDateTime_Delta members: PyDateTime_DELTA_GET_DAYS, PyDateTime_DELTA_GET_SECONDS, PyDateTime_DELTA_GET_MICROSECONDS. |