/external/fonttools/Lib/fontTools/misc/ |
D | arrayTools.py | 190 def __round__(self): member in Vector 193 return self.__round__()
|
/external/python/cpython3/Doc/library/ |
D | fractions.rst | 158 .. method:: __round__() 159 __round__(ndigits)
|
D | typing.rst | 539 An ABC with one abstract method ``__round__``
|
D | functions.rst | 1365 ``number.__round__``.
|
/external/python/cpython3/Lib/ |
D | numbers.py | 189 def __round__(self, ndigits=None): member in Real
|
D | fractions.py | 520 def __round__(self, ndigits=None): member in Fraction
|
D | typing.py | 1320 def __round__(self, ndigits: int = 0) -> T_co: member in SupportsRound
|
D | _pydecimal.py | 1826 def __round__(self, n=None): member in Decimal
|
/external/python/cpython3/Lib/test/ |
D | test_decimal.py | 4462 self.assertEqual(str(Decimal("9.99").__round__()), "10") 4463 self.assertEqual(str(Decimal("9.99e-5").__round__()), "0") 4464 self.assertEqual(str(Decimal("1.23456789").__round__(5)), "1.23457") 4465 self.assertEqual(str(Decimal("1.2345").__round__(10)), "1.2345000000") 4466 self.assertEqual(str(Decimal("1.2345").__round__(-10)), "0E+10") 4468 self.assertRaises(TypeError, Decimal("1.23").__round__, "5") 4469 self.assertRaises(TypeError, Decimal("1.23").__round__, 5, 8) 5023 self.assertRaises(InvalidOperation, Decimal("1.23").__round__, 5025 self.assertRaises(InvalidOperation, Decimal("1.23").__round__, 5027 self.assertRaises(InvalidOperation, Decimal("1").__round__, [all …]
|
D | test_builtin.py | 1234 def __round__(self): member in BuiltinTest.test_round.TestRound 1246 t.__round__ = lambda *args: args
|
/external/python/pyasn1/pyasn1/type/ |
D | univ.py | 217 def __round__(self, n=0): member in Integer 1440 def __round__(self, n=0): member in Real
|
/external/python/cpython3/Modules/_decimal/tests/ |
D | deccheck.py | 524 def __round__(self, t): member in SkipHandler
|
/external/fonttools/Lib/fontTools/ttLib/tables/ |
D | _g_l_y_f.py | 1446 def __round__(self): member in GlyphCoordinates
|
/external/python/cpython3/Python/ |
D | bltinmodule.c | 40 _Py_IDENTIFIER(__round__);
|
/external/python/pyasn1/ |
D | CHANGES.rst | 321 (e.g. __pos__, __neg__, __round__, __floor__, __ceil__, __trunc__)
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.0.rst | 816 delegates to ``x.__round__([n])`` instead of always returning a
|
/external/python/cpython3/Doc/reference/ |
D | datamodel.rst | 2402 .. method:: object.__round__(self, [,ndigits]) 2411 Unless *ndigits* is passed to :meth:`!__round__` all these methods should
|
/external/python/cpython3/Misc/ |
D | HISTORY | 4447 - Issue #17722: When looking up __round__, resolve descriptors. 16780 - The Decimal module gained the magic methods __round__, __ceil__,
|