Home
last modified time | relevance | path

Searched refs:__round__ (Results 1 – 25 of 27) sorted by relevance

12

/external/fonttools/Lib/fontTools/misc/
Dvector.py79 def __round__(self, *, round=round): member in Vector
120 return self.__round__()
/external/python/cpython3/Doc/library/
Dfractions.rst169 .. method:: __round__()
170 __round__(ndigits)
Dtyping.rst1553 An ABC with one abstract method ``__round__``
Dfunctions.rst1465 ``number.__round__``.
Dunittest.mock.rst2013 * ``__round__``, ``__floor__``, ``__trunc__`` and ``__ceil__``
/external/python/cpython3/Lib/
Dnumbers.py189 def __round__(self, ndigits=None): member in Real
Dfractions.py505 def __round__(self, ndigits=None): member in Fraction
Dtyping.py1789 def __round__(self, ndigits: int = 0) -> T_co: member in SupportsRound
D_pydecimal.py1830 def __round__(self, n=None): member in Decimal
/external/python/cpython3/Lib/unittest/test/testmock/
Dtestmagicmethods.py284 self.assertEqual(round(mock), mock.__round__())
310 self.assertEqual(round(mock), mock.__round__())
/external/python/cpython3/Lib/test/
Dtest_decimal.py4462 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 …]
Dtest_builtin.py1408 def __round__(self): member in BuiltinTest.test_round.TestRound
1420 t.__round__ = lambda *args: args
/external/python/mock/
DCHANGELOG.rst58 ``__round__`` magic method.
/external/python/mock/mock/tests/
Dtestmagicmethods.py341 self.assertEqual(round(mock), mock.__round__())
/external/python/pyasn1/pyasn1/type/
Duniv.py221 def __round__(self, n=0): member in Integer
1489 def __round__(self, n=0): member in Real
/external/fonttools/Lib/fontTools/varLib/
D__init__.py257 deltas = model.getDeltas(allCoords, round=partial(GlyphCoordinates.__round__, round=round))
/external/protobuf/python/google/protobuf/internal/
Dtest_util.py864 def __round__(self): member in NonStandardInteger
/external/python/cpython3/Modules/_decimal/tests/
Ddeccheck.py555 def __round__(self, t): member in SkipHandler
/external/python/cpython3/Python/
Dbltinmodule.c15 _Py_IDENTIFIER(__round__);
/external/fonttools/Lib/fontTools/ttLib/tables/
D_g_l_y_f.py1629 def __round__(self, *, round=otRound): member in GlyphCoordinates
/external/python/pyasn1/
DCHANGES.rst402 (e.g. __pos__, __neg__, __round__, __floor__, __ceil__, __trunc__)
/external/python/cpython3/Doc/whatsnew/
D3.0.rst816 delegates to ``x.__round__([n])`` instead of always returning a
/external/python/cpython3/Tools/c-analyzer/
DTODO502 Python/bltinmodule.c:PyId___round__ _Py_IDENTIFIER(__round__)
Dknown.tsv1349 Python/bltinmodule.c - PyId___round__ variable _Py_IDENTIFIER(__round__)
/external/python/cpython3/Doc/reference/
Ddatamodel.rst2497 .. method:: object.__round__(self, [,ndigits])
2506 Unless *ndigits* is passed to :meth:`!__round__` all these methods should

12