summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2012-02-20 00:59:10 (GMT)
committerBenjamin Peterson <benjamin@python.org>2012-02-20 00:59:10 (GMT)
commit8eb1269c346fa860acce9459c0bed065ffccd3ce (patch)
tree186cdf221973397a4968a4c16d78d3298ff2011b /Misc/NEWS
parent4a57846efe1419843a5e1a35a9f098bab6b066c9 (diff)
downloadcpython-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/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 5c24b99..fbeb177 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.