]> granicus.if.org Git - python/commitdiff
another benefit of this change
authorBenjamin Peterson <benjamin@python.org>
Fri, 3 Jun 2011 21:17:22 +0000 (16:17 -0500)
committerBenjamin Peterson <benjamin@python.org>
Fri, 3 Jun 2011 21:17:22 +0000 (16:17 -0500)
Misc/NEWS

index 2fc7b4765eb18920e7cc7f475a72b16b610b4b48..041c2cfdc6b48e52afbd46fabb61c40c47348252 100644 (file)
--- 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.