Skip to content

Commit d2782d5

Browse files
Revert "Skip test_abstractmethod_integration on free-threading"
This reverts commit 80ab33d.
1 parent 80ab33d commit d2782d5

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

Lib/test/test_abc.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
import abc
1212
import _py_abc
1313
from inspect import isabstract
14-
from test.support import requires_gil_enabled, warnings_helper
14+
from test.support import warnings_helper
1515

1616
def test_factory(abc_ABCMeta, abc_get_cache_token):
1717
class TestLegacyAPI(unittest.TestCase):
@@ -198,7 +198,6 @@ def method_two(self):
198198
msg = r"class C without an implementation for abstract methods 'method_one', 'method_two'"
199199
self.assertRaisesRegex(TypeError, msg, C)
200200

201-
@requires_gil_enabled()
202201
@warnings_helper.ignore_warnings(category=DeprecationWarning)
203202
def test_abstractmethod_integration(self):
204203
for abstractthing in [abc.abstractmethod, abc.abstractproperty,

0 commit comments

Comments
 (0)