Skip to content

Commit 5170f00

Browse files
committed
remove cpython_only from exception group tests
1 parent f5cab69 commit 5170f00

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

Lib/test/test_traceback.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1254,7 +1254,6 @@ def check_exception_group(self, exc_func, expected):
12541254
# at most one margin char per line
12551255
self.assertLessEqual(line.count('|'), 1)
12561256

1257-
@cpython_only
12581257
def test_exception_group_basic(self):
12591258
def exc():
12601259
raise ExceptionGroup("eg", [ValueError(1), TypeError(2)])
@@ -1271,7 +1270,6 @@ def exc():
12711270

12721271
self.check_exception_group(exc, expected)
12731272

1274-
@cpython_only
12751273
def test_exception_group_context(self):
12761274
def exc():
12771275
try:
@@ -1298,7 +1296,6 @@ def exc():
12981296
]
12991297
self.check_exception_group(exc, expected)
13001298

1301-
@cpython_only
13021299
def test_exception_group_context(self):
13031300
def exc():
13041301
EG = ExceptionGroup
@@ -1353,7 +1350,6 @@ def exc():
13531350
]
13541351
self.check_exception_group(exc, expected)
13551352

1356-
@cpython_only
13571353
def test_exception_group_nested(self):
13581354
def exc():
13591355
EG = ExceptionGroup

0 commit comments

Comments
 (0)