Home
last modified time | relevance | path

Searched refs:WrapperDescriptorType (Results 1 – 8 of 8) sorted by relevance

/third_party/python/Lib/
Dtypes.py46 WrapperDescriptorType = type(object.__init__) variable
Dtyping.py31 from types import WrapperDescriptorType, MethodWrapperType, MethodDescriptorType, GenericAlias
1748 WrapperDescriptorType, MethodWrapperType, MethodDescriptorType)
/third_party/python/Lib/test/
Dtest_types.py597 self.assertIsInstance(object.__init__, types.WrapperDescriptorType)
598 self.assertIsInstance(object.__str__, types.WrapperDescriptorType)
599 self.assertIsInstance(object.__lt__, types.WrapperDescriptorType)
600 self.assertIsInstance(int.__lt__, types.WrapperDescriptorType)
/third_party/python/Doc/library/
Dtypes.rst186 .. data:: WrapperDescriptorType
/third_party/python/Misc/NEWS.d/
D3.6.2rc1.rst495 WrapperDescriptorType, minor bug-fixes. Original PRs by Jim
D3.5.4rc1.rst561 WrapperDescriptorType, minor bug-fixes. Original PRs by Jim
D3.7.0a1.rst2813 WrapperDescriptorType, minor bug-fixes. Original PRs by Jim
3526 Add WrapperDescriptorType, MethodWrapperType, and MethodDescriptorType
/third_party/python/Doc/whatsnew/
D3.7.rst1495 The new :class:`~types.WrapperDescriptorType`,