Home
last modified time | relevance | path

Searched refs:__idiv__ (Results 1 – 9 of 9) sorted by relevance

/external/python/cpython2/Lib/test/
Dtest_augassign.py154 def __idiv__(self, val): member in AugAssignTest.testCustomMethods2.testall
253 x.__idiv__(1)
Dtest_operator.py478 def __idiv__ (self, other): return "idiv" member in OperatorTestCase.test_inplace.C
508 self.assertEqual(operator.__idiv__ (c, 5), "idiv")
/external/python/cpython2/Modules/
Doperator.c409 spam2(idiv,__idiv__, "a = idiv(a, b) -- Same as a /= b when __future__.division is not in effect.")
/external/python/cpython2/Doc/library/
Doperator.rst343 __idiv__(a, b)
/external/tensorflow/tensorflow/python/ops/
Dresource_variable_ops.py1394 def __idiv__(self, unused_other): member in ResourceVariable
Dvariables.py2281 def __idiv__(self, other): member in RefVariable
/external/python/cpython2/Misc/
Dcheatsheet1193 s*=o = __imul__(s,o) s/=o = __idiv__(s,o)
/external/python/cpython2/Doc/reference/
Ddatamodel.rst2178 object.__idiv__(self, other)
/external/python/cpython3/Misc/
DHISTORY17279 * __div__, __rdiv__, and __idiv__
17281 * operator.div, operator.idiv, operator.__div__, operator.__idiv__
17318 __div__, __idiv__, isCallable, sequenceIncludes.
17359 - Removed these Python slots: __coerce__, __div__, __idiv__, __rdiv__.