mirror of
https://github.com/python/cpython.git
synced 2025-11-01 10:45:30 +00:00
fix lookup of __ceil__
This commit is contained in:
parent
b0125892e6
commit
f751bc9c01
3 changed files with 12 additions and 11 deletions
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue