Searched refs:WrapperDescriptorType (Results 1 – 8 of 8) sorted by relevance
/external/python/cpython3/Lib/ |
D | types.py | 39 WrapperDescriptorType = type(object.__init__) variable
|
D | typing.py | 31 from types import WrapperDescriptorType, MethodWrapperType, MethodDescriptorType 923 WrapperDescriptorType, MethodWrapperType, MethodDescriptorType)
|
/external/python/cpython3/Lib/test/ |
D | test_types.py | 580 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/ |
D | types.rst | 152 .. data:: WrapperDescriptorType
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.6.2rc1.rst | 495 WrapperDescriptorType, minor bug-fixes. Original PRs by Jim
|
D | 3.5.4rc1.rst | 562 WrapperDescriptorType, minor bug-fixes. Original PRs by Jim
|
D | 3.7.0a1.rst | 2818 WrapperDescriptorType, minor bug-fixes. Original PRs by Jim 3531 Add WrapperDescriptorType, MethodWrapperType, and MethodDescriptorType
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.7.rst | 1478 The new :class:`~types.WrapperDescriptorType`,
|