Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/
Dtypes.py39 WrapperDescriptorType = type(object.__init__) variable
Dtyping.py31 from types import WrapperDescriptorType, MethodWrapperType, MethodDescriptorType
923 WrapperDescriptorType, MethodWrapperType, MethodDescriptorType)
/external/python/cpython3/Lib/test/
Dtest_types.py580 self.assertIsInstance(object.__init__, types.WrapperDescriptorType)
581 self.assertIsInstance(object.__str__, types.WrapperDescriptorType)
582 self.assertIsInstance(object.__lt__, types.WrapperDescriptorType)
583 self.assertIsInstance(int.__lt__, types.WrapperDescriptorType)
/external/python/cpython3/Doc/library/
Dtypes.rst152 .. data:: WrapperDescriptorType
/external/python/cpython3/Misc/NEWS.d/
D3.6.2rc1.rst495 WrapperDescriptorType, minor bug-fixes. Original PRs by Jim
D3.5.4rc1.rst562 WrapperDescriptorType, minor bug-fixes. Original PRs by Jim
D3.7.0a1.rst2818 WrapperDescriptorType, minor bug-fixes. Original PRs by Jim
3531 Add WrapperDescriptorType, MethodWrapperType, and MethodDescriptorType
/external/python/cpython3/Doc/whatsnew/
D3.7.rst1478 The new :class:`~types.WrapperDescriptorType`,