Home
last modified time | relevance | path

Searched refs:__imul__ (Results 1 – 15 of 15) sorted by relevance

/external/python/cpython2/Lib/
DUserList.py73 def __imul__(self, n): member in UserList
DUserString.py214 def __imul__(self, n): member in MutableString
/external/python/cpython2/Lib/test/
Dtest_augassign.py146 def __imul__(self, val): member in AugAssignTest.testCustomMethods2.testall
Dtest_operator.py482 def __imul__ (self, other): return "imul" member in OperatorTestCase.test_inplace.C
512 self.assertEqual(operator.__imul__ (c, 5), "imul")
Dtest_index.py177 l2 = lst.__imul__(self.n)
Dseq_tests.py328 self.assertRaises(MemoryError, x.__imul__, 2**16)
Dtest_array.py401 self.assertRaises(TypeError, a.__imul__, "bad")
Dtest_descr.py3763 def __imul__(self, other): member in ClassPropertiesAndMethods.test_imul_bug.C
/external/python/cpython2/Doc/library/
Doperator.rst376 __imul__(a, b)
403 Use :func:`__imul__` instead.
/external/python/cpython2/Modules/
Doperator.c408 spam2(imul,__imul__, "a = imul(a, b) -- Same as a *= b.")
/external/python/cpython2/Lib/multiprocessing/
Dmanagers.py1056 def __imul__(self, value): member in ListProxy
/external/python/cpython2/Doc/faq/
Dgeneral.rst422 '__hash__', '__iadd__', '__imul__', '__init__', '__iter__', '__le__',
/external/python/cpython2/Doc/reference/
Ddatamodel.rst1868 :meth:`__rmul__` and :meth:`__imul__` described below; they should not define
2165 object.__imul__(self, other)
/external/python/cpython2/Misc/
Dcheatsheet1193 s*=o = __imul__(s,o) s/=o = __idiv__(s,o)
DHISTORY5361 and __imul__.
6886 '__gt__', '__hash__', '__iadd__', '__imul__', '__init__', '__le__',