summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2010-07-02 13:46:42 (GMT)
committerBenjamin Peterson <benjamin@python.org>2010-07-02 13:46:42 (GMT)
commitf751bc9c01b8c5c3dd99e188b348a63eb0b893af (patch)
treefb35226a63bd584d10922eb220241b7dd4b5f5d0 /Lib
parentb0125892e6fcdbb2c726322e702e5513ac42ba39 (diff)
downloadcpython-f751bc9c01b8c5c3dd99e188b348a63eb0b893af.zip
cpython-f751bc9c01b8c5c3dd99e188b348a63eb0b893af.tar.gz
cpython-f751bc9c01b8c5c3dd99e188b348a63eb0b893af.tar.bz2
fix lookup of __ceil__
Diffstat (limited to 'Lib')
-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 297cc35..0979880 100644
--- a/Lib/test/test_descr.py
+++ b/Lib/test/test_descr.py
@@ -1581,6 +1581,7 @@ order (MRO) for bases """
("__format__", format, format_impl, set(), {}),
("__floor__", math.floor, zero, set(), {}),
("__trunc__", math.trunc, zero, set(), {}),
+ ("__ceil__", math.ceil, zero, set(), {}),
]
class Checker(object):