summaryrefslogtreecommitdiffstats
path: root/Lib/types.py
diff options
context:
space:
mode:
authorJim Fasarakis-Hilliard <d.f.hilliard@gmail.com>2017-04-25 18:26:36 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2017-04-25 18:26:36 (GMT)
commit08c16016e2a2d1368d001ddebfe9ca92465773c4 (patch)
tree587af7612410fa638a420e845e16be2521a9552f /Lib/types.py
parent97bf722fcd1de1236824377e052369dc7686b644 (diff)
downloadcpython-08c16016e2a2d1368d001ddebfe9ca92465773c4.zip
cpython-08c16016e2a2d1368d001ddebfe9ca92465773c4.tar.gz
cpython-08c16016e2a2d1368d001ddebfe9ca92465773c4.tar.bz2
bpo:29950: Rename SlotWrapperType to WrapperDescriptorType (GH-926)
Diffstat (limited to 'Lib/types.py')
-rw-r--r--Lib/types.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/types.py b/Lib/types.py
index 1b7859e..929cba2 100644
--- a/Lib/types.py
+++ b/Lib/types.py
@@ -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)