commit | 7963a35b417dfde5d97c52c05b73af738c827ca6 | [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 | 9b2d29889b2f44a65e518fb56e8291059e0363ce | |
parent | 2cca0572848817791537efc9ee5df66d4ceb2d42 [diff] |
correctly lookup __dir__
diff --git a/Lib/test/test_descr.py b/Lib/test/test_descr.py index aafe428..c74e232 100644 --- a/Lib/test/test_descr.py +++ b/Lib/test/test_descr.py
@@ -1595,6 +1595,7 @@ # probably not worth it. # ("__enter__", run_context, iden), # ("__exit__", run_context, iden), + ("__dir__", dir, empty_seq, set(), {}), ] class Checker(object):