mirror of
https://github.com/python/cpython.git
synced 2025-12-31 04:23:37 +00:00
Disable Limited API tests with Py_TRACE_REFS (GH-95796)
This commit is contained in:
parent
7c8626ab3d
commit
eb81c1aea1
2 changed files with 19 additions and 0 deletions
|
|
@ -9,6 +9,7 @@
|
|||
import itertools
|
||||
import gc
|
||||
import contextlib
|
||||
import sys
|
||||
|
||||
|
||||
class BadStr(str):
|
||||
|
|
@ -759,6 +760,9 @@ def __call__(self, *args):
|
|||
self.assertEqual(expected, meth(*args1, **kwargs))
|
||||
self.assertEqual(expected, wrapped(*args, **kwargs))
|
||||
|
||||
@unittest.skipIf(
|
||||
hasattr(sys, 'getobjects'),
|
||||
"Limited API is not compatible with Py_TRACE_REFS")
|
||||
def test_vectorcall_limited(self):
|
||||
from _testcapi import pyobject_vectorcall
|
||||
obj = _testcapi.LimitedVectorCallClass()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue