commit | 8de87a640339165ad5448f468f98fce7819fe99d | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Mon May 23 16:11:05 2011 -0500 |
committer | Benjamin Peterson <benjamin@python.org> | Mon May 23 16:11:05 2011 -0500 |
tree | 03cb2758a0ace65fc9d527ed567a40cbdcaa3c14 | |
parent | 4ef33dc381607937ac9e0a5984a1ec22f238c6ed [diff] [blame] |
correctly lookup __dir__
diff --git a/Misc/NEWS b/Misc/NEWS index 296d2c1..8b7d726 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -9,6 +9,9 @@ Core and Builtins ----------------- +- Correct lookup of __dir__ on objects. Among other things, this 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.