File tree Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -171,7 +171,6 @@ def test_oldargs1_2_kw(self):
171
171
172
172
173
173
174
- @cpython_only
175
174
class TestCallingConventions (unittest .TestCase ):
176
175
"""Test calling using various C calling conventions (METH_*) from Python
177
176
@@ -311,23 +310,20 @@ def test_fastcall_keywords_ext(self):
311
310
)
312
311
313
312
314
- @cpython_only
315
313
class TestCallingConventionsInstance (TestCallingConventions ):
316
314
"""Test calling instance methods using various calling conventions"""
317
315
318
316
def setUp (self ):
319
317
self .obj = self .expected_self = _testcapi .MethInstance ()
320
318
321
319
322
- @cpython_only
323
320
class TestCallingConventionsClass (TestCallingConventions ):
324
321
"""Test calling class methods using various calling conventions"""
325
322
326
323
def setUp (self ):
327
324
self .obj = self .expected_self = _testcapi .MethClass
328
325
329
326
330
- @cpython_only
331
327
class TestCallingConventionsClassInstance (TestCallingConventions ):
332
328
"""Test calling class methods on instance"""
333
329
@@ -336,7 +332,6 @@ def setUp(self):
336
332
self .expected_self = _testcapi .MethClass
337
333
338
334
339
- @cpython_only
340
335
class TestCallingConventionsStatic (TestCallingConventions ):
341
336
"""Test calling static methods using various calling conventions"""
342
337
@@ -373,7 +368,6 @@ def static_method():
373
368
374
369
NULL_OR_EMPTY = object ()
375
370
376
- @cpython_only
377
371
class FastCallTests (unittest .TestCase ):
378
372
"""Test calling using various callables from C
379
373
"""
You can’t perform that action at this time.
0 commit comments