bpo:29950: Rename SlotWrapperType to WrapperDescriptorType (GH-926)

This commit is contained in:
Jim Fasarakis-Hilliard 2017-04-25 21:26:36 +03:00 committed by Berker Peksag
parent 97bf722fcd
commit 08c16016e2
4 changed files with 7 additions and 7 deletions

View file

@ -36,7 +36,7 @@ MethodType = type(_C()._m)
BuiltinFunctionType = type(len)
BuiltinMethodType = type([].append) # Same as BuiltinFunctionType
SlotWrapperType = type(object.__init__)
WrapperDescriptorType = type(object.__init__)
MethodWrapperType = type(object().__str__)
MethodDescriptorType = type(str.join)