Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/
Dtypes.py46 WrapperDescriptorType = type(object.__init__) variable
Dtyping.py29 from types import WrapperDescriptorType, MethodWrapperType, MethodDescriptorType, GenericAlias
1359 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.rst179 .. data:: WrapperDescriptorType
/external/python/cpython3/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
/external/python/cpython3/Doc/whatsnew/
D3.7.rst1494 The new :class:`~types.WrapperDescriptorType`,