Skip to content

Commit 5651d93

Browse files
authored
Avoid segfault
1 parent 78f6efb commit 5651d93

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/trio/_core/_tests/test_run.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1060,9 +1060,10 @@ async def main() -> None:
10601060

10611061
# This segfaults, so we need to skipif. Remember to remove the skipif once
10621062
# the upstream issue is resolved.
1063+
# TODO: point out this still segfaults
10631064
@restore_unraisablehook()
10641065
@pytest.mark.skipif(
1065-
sys.version_info[:3] == (3, 14, 0),
1066+
sys.version_info[:2] == (3, 14),
10661067
reason="https://github.com/python/cpython/issues/133932",
10671068
)
10681069
def test_error_in_run_loop() -> None:

0 commit comments

Comments
 (0)