summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2011-05-23 21:11:05 (GMT)
committerBenjamin Peterson <benjamin@python.org>2011-05-23 21:11:05 (GMT)
commit7963a35b417dfde5d97c52c05b73af738c827ca6 (patch)
tree9b2d29889b2f44a65e518fb56e8291059e0363ce /Misc
parent2cca0572848817791537efc9ee5df66d4ceb2d42 (diff)
downloadcpython-7963a35b417dfde5d97c52c05b73af738c827ca6.zip
cpython-7963a35b417dfde5d97c52c05b73af738c827ca6.tar.gz
cpython-7963a35b417dfde5d97c52c05b73af738c827ca6.tar.bz2
correctly lookup __dir__
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 9ae7979..37bbbc1 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.1.4?
Core and Builtins
-----------------
+- Correct lookup of __dir__ on objects. Among other things, this causes errors
+ besides AttributeError found on lookup to be propagated.
+
- Issue #12060: Use sig_atomic_t type and volatile keyword in the signal
module. Patch written by Charles-François Natali.