another benefit of this change

This commit is contained in:
Benjamin Peterson 2011-06-03 16:17:22 -05:00
parent 115a143fa7
commit ef1122cbd6
1 changed files with 3 additions and 2 deletions

View File

@ -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.