diff options
| author | Benjamin Peterson <benjamin@python.org> | 2011-05-23 16:11:05 -0500 |
|---|---|---|
| committer | Benjamin Peterson <benjamin@python.org> | 2011-05-23 16:11:05 -0500 |
| commit | 7963a35b417dfde5d97c52c05b73af738c827ca6 (patch) | |
| tree | 9b2d29889b2f44a65e518fb56e8291059e0363ce /Lib | |
| parent | 2cca0572848817791537efc9ee5df66d4ceb2d42 (diff) | |
| download | cpython-git-7963a35b417dfde5d97c52c05b73af738c827ca6.tar.gz | |
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 aafe428bd0..c74e232776 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): |
