summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2011-06-03 16:17:22 -0500
committerBenjamin Peterson <benjamin@python.org>2011-06-03 16:17:22 -0500
commite498a6c0dc165a120fd65a4ae5879df705ff93c2 (patch)
treea98ed03a83c79c2af637b272510503e347810605
parent609d3d05bad6910d01b3a399fda53766d820c2d4 (diff)
downloadcpython-e498a6c0dc165a120fd65a4ae5879df705ff93c2.tar.gz
another benefit of this change
-rw-r--r--Misc/NEWS5
1 files changed, 3 insertions, 2 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 2fc7b4765e..041c2cfdc6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -26,8 +26,9 @@ Core and Builtins
"maximum recursion depth" RuntimeError exception.
(patch by Ronald Oussoren)
-- Correct lookup of __dir__ on objects. Among other things, this causes errors
- besides AttributeError found on lookup to be propagated.
+- Correct lookup of __dir__ on objects. This allows old-style classes to have
+ __dir__. It also causes errors besides AttributeError found on lookup to be
+ propagated.
- Issue #1195: Fix input() if it is interrupted by CTRL+d and then CTRL+c,
clear the end-of-file indicator after CTRL+d.