fix lookup of __ceil__

This commit is contained in:
Benjamin Peterson 2010-07-02 13:46:42 +00:00
parent b0125892e6
commit f751bc9c01
3 changed files with 12 additions and 11 deletions

View file

@ -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):