Revert "Backport METH_FASTCALL from Python 3.7 (#328)"

This reverts commit cf73bbd678.
This commit is contained in:
Justine Tunney 2022-05-12 06:49:54 -07:00
parent e7611a8476
commit 2ea1dc405c
102 changed files with 3299 additions and 2894 deletions

View file

@ -67,7 +67,6 @@ class FinalizationTest(unittest.TestCase):
del frame
support.gc_collect()
@unittest.skipIf(True, "TODO: find out why this fails")
def test_refcycle(self):
# A generator caught in a refcycle gets finalized anyway.
old_garbage = gc.garbage[:]
@ -334,7 +333,7 @@ class ExceptionTest(unittest.TestCase):
self.assertIsInstance(cm.exception.value, StopIteration)
self.assertEqual(cm.exception.value.value, 2)
@unittest.skipIf(True, "TODO: find out why this fails")
class YieldFromTests(unittest.TestCase):
def test_generator_gi_yieldfrom(self):
def a():