Home
last modified time | relevance | path

Searched refs:__ceil__ (Results 1 – 13 of 13) sorted by relevance

/external/python/cpython3/Lib/
Dnumbers.py184 def __ceil__(self): member in Real
Dfractions.py515 def __ceil__(a): member in Fraction
D_pydecimal.py1903 def __ceil__(self): member in Decimal
/external/python/cpython3/Doc/library/
Dfractions.rst152 .. method:: __ceil__()
Dmath.rst35 If *x* is not a float, delegates to ``x.__ceil__()``, which should return an
Dunittest.mock.rst1697 * ``__floor__``, ``__trunc__`` and ``__ceil__``
/external/python/pyasn1/pyasn1/type/
Duniv.py227 def __ceil__(self): member in Integer
1450 def __ceil__(self): member in Real
/external/python/cpython3/Lib/test/
Dtest_math.py404 def __ceil__(self): member in MathTests.testCeil.TestCeil
412 t.__ceil__ = lambda *args: args
/external/python/cpython3/Modules/
Dmathmodule.c1088 _Py_IDENTIFIER(__ceil__); in math_ceil()
/external/python/cpython2/Lib/test/
Dtest_math.py289 t.__ceil__ = lambda *args: args
/external/python/pyasn1/
DCHANGES.rst321 (e.g. __pos__, __neg__, __round__, __floor__, __ceil__, __trunc__)
/external/python/cpython3/Doc/reference/
Ddatamodel.rst2405 object.__ceil__(self)
/external/python/cpython3/Misc/
DHISTORY14203 - In the math module, correctly lookup __trunc__, __ceil__, and __floor__ as
16780 - The Decimal module gained the magic methods __round__, __ceil__,