Home
last modified time | relevance | path

Searched refs:MethodWrapperType (Results 1 – 7 of 7) sorted by relevance

/external/python/cpython3/Lib/
Dtypes.py47 MethodWrapperType = type(object().__str__) variable
Dtyping.py29 from types import WrapperDescriptorType, MethodWrapperType, MethodDescriptorType, GenericAlias
1359 WrapperDescriptorType, MethodWrapperType, MethodDescriptorType)
/external/python/cpython3/Lib/test/
Dtest_types.py586 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/
Dtypes.rst187 .. data:: MethodWrapperType
/external/python/cpython3/Misc/NEWS.d/
D3.8.0a1.rst1100 :class:`MethodWrapperType` instances (methods of user-defined classes and
1103 :class:`MethodWrapperType` instances no longer support ordering.
D3.7.0a1.rst3526 Add WrapperDescriptorType, MethodWrapperType, and MethodDescriptorType
/external/python/cpython3/Doc/whatsnew/
D3.7.rst1495 :class:`~types.MethodWrapperType`, :class:`~types.MethodDescriptorType`,