/external/python/cpython3/Lib/ |
D | numbers.py | 197 def __divmod__(self, other): member in Real
|
D | fractions.py | 424 __divmod__, __rdivmod__ = _operator_fallbacks(_divmod, divmod) variable in Fraction
|
D | _pydecimal.py | 1423 def __divmod__(self, other, context=None): member in Decimal 1464 return other.__divmod__(self, context=context) 4433 r = a.__divmod__(b, context=self)
|
D | datetime.py | 727 def __divmod__(self, other): member in timedelta
|
/external/python/cpython2/Lib/ |
D | numbers.py | 200 def __divmod__(self, other): member in Real
|
D | decimal.py | 1393 def __divmod__(self, other, context=None): member in Decimal 1434 return other.__divmod__(self, context=context) 4259 r = a.__divmod__(b, context=self)
|
/external/python/mock/mock/tests/ |
D | testmagicmethods.py | 525 m.__divmod__.return_value = (2, 1) 530 foo_direct = m.__divmod__(2)
|
/external/python/cpython3/Lib/unittest/test/testmock/ |
D | testmagicmethods.py | 481 m.__divmod__.return_value = (2, 1) 486 foo_direct = m.__divmod__(2)
|
/external/llvm-project/lldb/examples/python/ |
D | sbvalue.py | 143 def __divmod__(self, other): member in variable
|
/external/python/cpython2/Lib/test/ |
D | test_binop.py | 171 def __divmod__(self, other): member in Rat
|
D | test_datetime.py | 511 def __divmod__(self, other): member in TestTimeDelta.test_issue31752.Sum 523 def __divmod__(self, other): member in TestTimeDelta.test_issue31752.Sum
|
D | test_decimal.py | 634 def __divmod__(self, other): member in DecimalImplicitConstructionTest.test_rop.E
|
/external/python/cpython3/Lib/test/ |
D | test_binop.py | 162 def __divmod__(self, other): member in Rat
|
D | test_decimal.py | 867 def __divmod__(self, other): member in ImplicitConstructionTest.test_rop.E 5126 self.assertRaises(DivisionByZero, Decimal(9).__divmod__, 0) 5132 self.assertRaises(InvalidOperation, Decimal(9).__divmod__, 0)
|
D | test_os.py | 816 def __divmod__(*args): member in UtimeTests.test_issue31577.get_bad_int.BadInt
|
D | datetimetester.py | 1018 def __divmod__(self, other): member in TestTimeDelta.test_issue31752.Sum
|
/external/python/pyasn1/pyasn1/type/ |
D | univ.py | 188 def __divmod__(self, value): member in Integer 1459 def __divmod__(self, value): member in Real
|
/external/llvm-project/lldb/bindings/python/ |
D | python-extensions.swig | 374 def __divmod__(self, other):
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.7.2rc1.rst | 214 Fix float.__mod__ to have the same behaviour as float.__divmod__ with
|
/external/python/cpython2/Doc/reference/ |
D | datamodel.rst | 2097 object.__divmod__(self, other) 2114 method, ``x.__add__(y)`` is called. The :meth:`__divmod__` method should be the
|
/external/python/cpython3/Doc/reference/ |
D | datamodel.rst | 2354 object.__divmod__(self, other) 2372 :meth:`__divmod__` method should be the equivalent to using
|
/external/python/cpython3/Doc/c-api/ |
D | typeobj.rst | 224 …:`~PyNumberMethods.nb_divmod` | :c:type:`binaryfunc` | __divmod__ |
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.5.rst | 2017 :meth:`__divmod__` and :meth:`__matmul__` operators.
|
/external/python/cpython3/Doc/library/ |
D | unittest.mock.rst | 2023 ``__floordiv__``, ``__mod__``, ``__divmod__``, ``__lshift__``,
|
/external/python/cpython2/Misc/ |
D | cheatsheet | 1184 s%o = __mod__(s,o) divmod(s,o) = __divmod__(s,o)
|