diff options
author | Benjamin Peterson <benjamin@python.org> | 2011-05-23 16:27:36 -0500 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2011-05-23 16:27:36 -0500 |
commit | 5cc10b00094f06af56dedd02d39bc46886e17c70 (patch) | |
tree | a6bb19f9a5eab8dfa7d1145d92b87c3b9faba61d /Lib/test | |
parent | 1dc540702072c381c3e7570f075a3f1147353d92 (diff) | |
parent | f5fcd33be9b21b148774d3fa2832bb0627e94809 (diff) | |
download | cpython-git-5cc10b00094f06af56dedd02d39bc46886e17c70.tar.gz |
merge 3.2
Diffstat (limited to 'Lib/test')
-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 9273c468a8..31731d2b65 100644 --- a/Lib/test/test_descr.py +++ b/Lib/test/test_descr.py @@ -1587,6 +1587,7 @@ order (MRO) for bases """ ("__floor__", math.floor, zero, set(), {}), ("__trunc__", math.trunc, zero, set(), {}), ("__ceil__", math.ceil, zero, set(), {}), + ("__dir__", dir, empty_seq, set(), {}), ] class Checker(object): |