diff options
author | Jim Fasarakis-Hilliard <d.f.hilliard@gmail.com> | 2017-04-25 18:26:36 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2017-04-25 18:26:36 (GMT) |
commit | 08c16016e2a2d1368d001ddebfe9ca92465773c4 (patch) | |
tree | 587af7612410fa638a420e845e16be2521a9552f /Lib | |
parent | 97bf722fcd1de1236824377e052369dc7686b644 (diff) | |
download | cpython-08c16016e2a2d1368d001ddebfe9ca92465773c4.zip cpython-08c16016e2a2d1368d001ddebfe9ca92465773c4.tar.gz cpython-08c16016e2a2d1368d001ddebfe9ca92465773c4.tar.bz2 |
bpo:29950: Rename SlotWrapperType to WrapperDescriptorType (GH-926)
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_types.py | 8 | ||||
-rw-r--r-- | Lib/types.py | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/Lib/test/test_types.py b/Lib/test/test_types.py index 67d3281..3fd66db 100644 --- a/Lib/test/test_types.py +++ b/Lib/test/test_types.py @@ -577,10 +577,10 @@ class TypesTests(unittest.TestCase): self.assertGreater(tuple.__itemsize__, 0) def test_slot_wrapper_types(self): - self.assertIsInstance(object.__init__, types.SlotWrapperType) - self.assertIsInstance(object.__str__, types.SlotWrapperType) - self.assertIsInstance(object.__lt__, types.SlotWrapperType) - self.assertIsInstance(int.__lt__, types.SlotWrapperType) + self.assertIsInstance(object.__init__, types.WrapperDescriptorType) + self.assertIsInstance(object.__str__, types.WrapperDescriptorType) + self.assertIsInstance(object.__lt__, types.WrapperDescriptorType) + self.assertIsInstance(int.__lt__, types.WrapperDescriptorType) def test_method_wrapper_types(self): self.assertIsInstance(object().__init__, types.MethodWrapperType) 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) |