/external/python/cpython2/Lib/test/ |
D | test_coercion.py | 14 def __coerce__(self, other): member in CoerceNumber 24 def __coerce__(self, other): member in CoerceTo 326 def __coerce__(self, other): member in CoercionTest.test_infinite_rec_classic_classes.Tester
|
D | test_compare.py | 15 def __coerce__(self, other): member in Coerce
|
D | test_complex.py | 128 self.assertRaises(OverflowError, complex.__coerce__, 1+1j, 1L<<10000) 133 def __coerce__(self, other): member in ComplexTest.test_no_implicit_coerce.A
|
D | test_class.py | 80 def __coerce__(self, *args): member in AllTests
|
D | test_builtin.py | 237 def __coerce__(self, other): member in BuiltinTest.test_coerce.BadNumber
|
/external/python/cpython2/Demo/classes/ |
D | bitvec.py | 316 def __coerce__(self, otherseq, *rest): member in BitVec
|
/external/python/cpython2/Doc/reference/ |
D | datamodel.rst | 1873 :meth:`__coerce__` or other numerical operators. It is recommended that both 2246 .. method:: object.__coerce__(self, other) 2283 :meth:`__coerce__` method in response to a binary operator; the only time 2284 :meth:`__coerce__` is invoked is when the built-in function :func:`coerce` is 2355 All these types implement a :meth:`__coerce__` method, for use by the built-in 2360 The complex type no longer makes implicit calls to the :meth:`__coerce__`
|
/external/python/cpython3/Doc/whatsnew/ |
D | 2.2.rst | 333 when it checks for other methods such as :meth:`__repr__` or :meth:`__coerce__`,
|
D | 2.7.rst | 788 will no longer ever attempt to call a :meth:`__coerce__` method on complex
|
/external/python/cpython2/Doc/whatsnew/ |
D | 2.2.rst | 333 when it checks for other methods such as :meth:`__repr__` or :meth:`__coerce__`,
|
D | 2.7.rst | 773 will no longer ever attempt to call a :meth:`__coerce__` method on complex
|
/external/python/cpython2/Misc/ |
D | cheatsheet | 1203 coerce(s,o) = __coerce__(s,o)
|
D | HISTORY | 564 - Bug #992017: A classic class that defined a __coerce__() method that returned 8420 - A bug that caused crashes when __coerce__ was used with augmented 15160 - The __coerce__ and __cmp__ methods for user-defined classes once 15271 with __coerce__ method. Also have a look at the end of the Tutorial
|
/external/python/cpython3/Misc/ |
D | HISTORY | 17359 - Removed these Python slots: __coerce__, __div__, __idiv__, __rdiv__. 17948 - Bug #992017: A classic class that defined a __coerce__() method that returned 25799 - A bug that caused crashes when __coerce__ was used with augmented 32539 - The __coerce__ and __cmp__ methods for user-defined classes once 32650 with __coerce__ method. Also have a look at the end of the Tutorial
|