mirror of
https://github.com/python/cpython.git
synced 2025-08-22 09:45:06 +00:00
bpo:29950: Rename SlotWrapperType to WrapperDescriptorType (GH-926)
This commit is contained in:
parent
97bf722fcd
commit
08c16016e2
4 changed files with 7 additions and 7 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue