summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
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 9363694..c63db58 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -163,6 +163,10 @@ Build
C API
+- PyNumber_Coerce() and PyNumber_CoerceEx() now also invoke the type's
+ coercion if both arguments have the same type but this type has the
+ CHECKTYPES flag set. This is to better support proxies.
+
- The type of tp_free has been changed from "void (*)(PyObject *)" to
"void (*)(void *)".