Home
last modified time | relevance | path

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

/third_party/python/Lib/
Dtypes.py47 MethodWrapperType = type(object().__str__) variable
Dtyping.py33 from types import WrapperDescriptorType, MethodWrapperType, MethodDescriptorType, GenericAlias
2275 WrapperDescriptorType, MethodWrapperType, MethodDescriptorType)
Dinspect.py516 return isinstance(object, types.MethodWrapperType)
1942 types.MethodWrapperType,
/third_party/python/Lib/test/
Dtest_types.py607 self.assertIsInstance(object().__init__, types.MethodWrapperType)
608 self.assertIsInstance(object().__str__, types.MethodWrapperType)
609 self.assertIsInstance(object().__lt__, types.MethodWrapperType)
610 self.assertIsInstance((42).__lt__, types.MethodWrapperType)
/third_party/python/Doc/library/
Dtypes.rst194 .. data:: MethodWrapperType
Dinspect.rst430 Return ``True`` if the type of object is a :class:`~types.MethodWrapperType`.
432 These are instances of :class:`~types.MethodWrapperType`, such as :meth:`~object.__str__`,
/third_party/python/Doc/whatsnew/
D3.11.rst813 for checking if the type of an object is a :class:`~types.MethodWrapperType`.
D3.7.rst1496 :class:`~types.MethodWrapperType`, :class:`~types.MethodDescriptorType`,
/third_party/python/Misc/
DNEWS629 :class:`types.MethodWrapperType` in modules.
18807 :class:`MethodWrapperType` instances (methods of user-defined classes and
18810 :class:`MethodWrapperType` instances no longer support ordering.
25052 - bpo-29377: Add WrapperDescriptorType, MethodWrapperType, and