Searched refs:MethodWrapperType (Results 1 – 6 of 6) sorted by relevance
/external/python/cpython3/Lib/ |
D | types.py | 40 MethodWrapperType = type(object().__str__) variable
|
D | typing.py | 31 from types import WrapperDescriptorType, MethodWrapperType, MethodDescriptorType 923 WrapperDescriptorType, MethodWrapperType, MethodDescriptorType)
|
/external/python/cpython3/Lib/test/ |
D | test_types.py | 586 self.assertIsInstance(object().__init__, types.MethodWrapperType) 587 self.assertIsInstance(object().__str__, types.MethodWrapperType) 588 self.assertIsInstance(object().__lt__, types.MethodWrapperType) 589 self.assertIsInstance((42).__lt__, types.MethodWrapperType)
|
/external/python/cpython3/Doc/library/ |
D | types.rst | 160 .. data:: MethodWrapperType
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.7.rst | 1479 :class:`~types.MethodWrapperType`, :class:`~types.MethodDescriptorType`,
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.7.0a1.rst | 3531 Add WrapperDescriptorType, MethodWrapperType, and MethodDescriptorType
|