summaryrefslogtreecommitdiff
path: root/Lib/test
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2011-05-23 16:11:05 -0500
committerBenjamin Peterson <benjamin@python.org>2011-05-23 16:11:05 -0500
commit9687c64f9d19f5ae610cee770736330a3e1576be (patch)
tree6f89999b6a3c63c696da2e76bc7b1e013f3898e6 /Lib/test
parent544fb3c1aea093f3be6e0142679c0f01ab316758 (diff)
downloadcpython-9687c64f9d19f5ae610cee770736330a3e1576be.tar.gz
correctly lookup __dir__
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/test_descr.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_descr.py b/Lib/test/test_descr.py
index 1fe0de582a..dc18f336df 100644
--- a/Lib/test/test_descr.py
+++ b/Lib/test/test_descr.py
@@ -1718,6 +1718,7 @@ order (MRO) for bases """
("__exit__", run_context, swallow, set(), {"__enter__" : iden}),
("__complex__", complex, complex_num, set(), {}),
("__format__", format, format_impl, set(), {}),
+ ("__dir__", dir, empty_seq, set(), {}),
]
class Checker(object):