summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorYury Selivanov <yselivanov@sprymix.com>2015-05-21 19:41:57 (GMT)
committerYury Selivanov <yselivanov@sprymix.com>2015-05-21 19:41:57 (GMT)
commitbf341fb5f6016ca5c79cee01211631ab5a01c5cf (patch)
treef1f93f45f17bc2404d044996fc55fb654de09367 /Misc
parent0978b5cdb36ef73061e438c342b508dd38c73ce8 (diff)
downloadcpython-bf341fb5f6016ca5c79cee01211631ab5a01c5cf.zip
cpython-bf341fb5f6016ca5c79cee01211631ab5a01c5cf.tar.gz
cpython-bf341fb5f6016ca5c79cee01211631ab5a01c5cf.tar.bz2
Issue 23898: Fix inspect.classify_class_attrs() to work with __eq__
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 88e7643..0593d89 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -260,6 +260,9 @@ Library
- asyncio: async() function is deprecated in favour of ensure_future().
+- Issue 23898: Fix inspect.classify_class_attrs() to support attributes
+ with overloaded __eq__ and __bool__. Patch by Mike Bayer.
+
Tests
-----