diff options
author | Benjamin Peterson <benjamin@python.org> | 2011-05-23 21:11:05 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2011-05-23 21:11:05 (GMT) |
commit | 7963a35b417dfde5d97c52c05b73af738c827ca6 (patch) | |
tree | 9b2d29889b2f44a65e518fb56e8291059e0363ce /Lib | |
parent | 2cca0572848817791537efc9ee5df66d4ceb2d42 (diff) | |
download | cpython-7963a35b417dfde5d97c52c05b73af738c827ca6.zip cpython-7963a35b417dfde5d97c52c05b73af738c827ca6.tar.gz cpython-7963a35b417dfde5d97c52c05b73af738c827ca6.tar.bz2 |
correctly lookup __dir__
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_descr.py | 1 |
1 files changed, 1 insertions, 0 deletions
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 @@ order (MRO) for bases """ # probably not worth it. # ("__enter__", run_context, iden), # ("__exit__", run_context, iden), + ("__dir__", dir, empty_seq, set(), {}), ] class Checker(object): |