bpo-36974: inherit tp_vectorcall_offset unconditionally (GH-13858)

This commit is contained in:
Jeroen Demeyer 2019-06-24 12:41:05 +02:00 committed by Petr Viktorin
parent 47fbc4e45b
commit a8b27e623d
4 changed files with 18 additions and 7 deletions

View file

@ -577,9 +577,18 @@ class TestPEP590(unittest.TestCase):
def __call__(self, n):
return 'new'
class SuperBase:
def __call__(self, *args):
return super().__call__(*args)
class MethodDescriptorSuper(SuperBase, _testcapi.MethodDescriptorBase):
def __call__(self, *args):
return super().__call__(*args)
calls += [
(MethodDescriptorHeap(), (0,), {}, True),
(MethodDescriptorOverridden(), (0,), {}, 'new'),
(MethodDescriptorSuper(), (0,), {}, True),
]
for (func, args, kwargs, expected) in calls: