Home
last modified time | relevance | path

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

/third_party/python/Lib/
Dtypes.py47 MethodWrapperType = type(object().__str__) variable
Dtyping.py31 from types import WrapperDescriptorType, MethodWrapperType, MethodDescriptorType, GenericAlias
1748 WrapperDescriptorType, MethodWrapperType, MethodDescriptorType)
/third_party/python/Lib/test/
Dtest_types.py603 self.assertIsInstance(object().__init__, types.MethodWrapperType)
604 self.assertIsInstance(object().__str__, types.MethodWrapperType)
605 self.assertIsInstance(object().__lt__, types.MethodWrapperType)
606 self.assertIsInstance((42).__lt__, types.MethodWrapperType)
/third_party/python/Doc/library/
Dtypes.rst194 .. data:: MethodWrapperType
/third_party/python/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
/third_party/python/Doc/whatsnew/
D3.7.rst1496 :class:`~types.MethodWrapperType`, :class:`~types.MethodDescriptorType`,