summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>2009-01-13 23:39:22 (GMT)
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>2009-01-13 23:39:22 (GMT)
commitb54447f31cf8f590ef526d2707f26041720f5784 (patch)
tree9f9ba59ce4f5437662fb9b9d4e9c13e2980fc6cf /Misc
parenta18392a324ba9ee8b267ac9181a67751d8150abc (diff)
downloadcpython-b54447f31cf8f590ef526d2707f26041720f5784.zip
cpython-b54447f31cf8f590ef526d2707f26041720f5784.tar.gz
cpython-b54447f31cf8f590ef526d2707f26041720f5784.tar.bz2
#1162154: inspect.getmembers() now skips attributes that raise AttributeError,
e.g. a __slots__ attribute which has not been set.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 4 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 7939323..9ced73d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -137,7 +137,10 @@ Core and Builtins
Library
-------
-- Issue #1696199: Add collections.Counter() for rapid and convenient
+- Issue #1162154: inspect.getmembers() now skips attributes that raise
+ AttributeError, e.g. a __slots__ attribute which has not been set.
+
+- Issue #1696199: Add collections.Counter() for rapid and convenient
counting.
- Issue #3860: GzipFile and BZ2File now support the context manager protocol.