Searched refs:__ipow__ (Results 1 – 13 of 13) sorted by relevance
/third_party/python/Lib/test/ |
D | test_augassign.py | 186 def __ipow__(self, val): member in AugAssignTest.testCustomMethods2.testall
|
D | test_capi.py | 199 self.assertEqual(o.__ipow__(1), (1, None)) 200 self.assertEqual(o.__ipow__(2, 2), (2, 2))
|
D | test_operator.py | 474 def __ipow__ (self, other): return "ipow" member in OperatorTestCase.test_inplace.C
|
D | test_descr.py | 3913 def __ipow__(self, other): member in ClassPropertiesAndMethods.test_ipow.C 3920 def __ipow__(self, other): member in ClassPropertiesAndMethods.test_ipow_returns_not_implemented.A
|
/third_party/python/Lib/ |
D | operator.py | 456 __ipow__ = ipow variable
|
/third_party/python/Misc/NEWS.d/ |
D | 3.10.0a6.rst | 161 If :func:`object.__ipow__` returns :const:`NotImplemented`, the operator
|
D | 3.8.0b1.rst | 1997 Fix crashes when attempting to use the *modulo* parameter when ``__ipow__``
|
/third_party/python/Doc/library/ |
D | operator.rst | 534 __ipow__(a, b)
|
/third_party/python/Tools/c-analyzer/ |
D | TODO | 450 Objects/typeobject.c:slot_nb_inplace_power():PyId___ipow__ _Py_IDENTIFIER(__ipow__)
|
/third_party/python/Doc/whatsnew/ |
D | 3.10.rst | 827 * If :func:`object.__ipow__` returns :const:`NotImplemented`, the operator will
|
/third_party/python/Doc/c-api/ |
D | typeobj.rst | 232 …`~PyNumberMethods.nb_inplace_power` | :c:type:`ternaryfunc` | __ipow__ |
|
/third_party/python/Objects/ |
D | typeobject.c | 7390 _Py_IDENTIFIER(__ipow__); in slot_nb_inplace_power()
|
/third_party/python/Doc/reference/ |
D | datamodel.rst | 2620 object.__ipow__(self, other[, modulo])
|