Searched refs:MethodWrapperType (Results 1 – 9 of 9) sorted by relevance
| /third_party/python/Lib/ |
| D | types.py | 47 MethodWrapperType = type(object().__str__) variable
|
| D | typing.py | 33 from types import WrapperDescriptorType, MethodWrapperType, MethodDescriptorType, GenericAlias 2275 WrapperDescriptorType, MethodWrapperType, MethodDescriptorType)
|
| D | inspect.py | 516 return isinstance(object, types.MethodWrapperType) 1942 types.MethodWrapperType,
|
| /third_party/python/Lib/test/ |
| D | test_types.py | 607 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/ |
| D | types.rst | 194 .. data:: MethodWrapperType
|
| D | inspect.rst | 430 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/ |
| D | 3.11.rst | 813 for checking if the type of an object is a :class:`~types.MethodWrapperType`.
|
| D | 3.7.rst | 1496 :class:`~types.MethodWrapperType`, :class:`~types.MethodDescriptorType`,
|
| /third_party/python/Misc/ |
| D | NEWS | 629 :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
|