diff options
author | Jeroen Demeyer <J.Demeyer@UGent.be> | 2019-07-05 14:48:24 +0200 |
---|---|---|
committer | Petr Viktorin <encukou@gmail.com> | 2019-07-05 14:48:24 +0200 |
commit | 0d722f3cd602e5f5492f9c65c8af57ea9d3743b6 (patch) | |
tree | e64e73f12cbad55824a13f3e7871051b9b34d98c /Lib/test/test_call.py | |
parent | 6e43d07324ca799118e805751a10a7eff71d5a04 (diff) | |
download | cpython-0d722f3cd602e5f5492f9c65c8af57ea9d3743b6.tar.gz cpython-0d722f3cd602e5f5492f9c65c8af57ea9d3743b6.zip |
bpo-36974: separate vectorcall functions for each calling convention (GH-13781)
Diffstat (limited to 'Lib/test/test_call.py')
-rw-r--r-- | Lib/test/test_call.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_call.py b/Lib/test/test_call.py index b252ca1076a..0bff7ded467 100644 --- a/Lib/test/test_call.py +++ b/Lib/test/test_call.py @@ -586,6 +586,8 @@ class TestPEP590(unittest.TestCase): return super().__call__(*args) calls += [ + (dict.update, ({},), {"key":True}, None), + ({}.update, ({},), {"key":True}, None), (MethodDescriptorHeap(), (0,), {}, True), (MethodDescriptorOverridden(), (0,), {}, 'new'), (MethodDescriptorSuper(), (0,), {}, True), |