We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9eed104 commit 16ad073Copy full SHA for 16ad073
graalpython/com.oracle.graal.python.test/src/tests/test_socket.py
@@ -1,4 +1,4 @@
1
-# Copyright (c) 2020, 2024, Oracle and/or its affiliates. All rights reserved.
+# Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
2
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
3
#
4
# The Universal Permissive License (UPL), Version 1.0
@@ -69,6 +69,12 @@ def test_get_name_info():
69
70
71
def test_recv_into():
72
+ try:
73
+ if __graalpython__.posix_module_backend() == "java":
74
+ return # transient timeouts
75
+ except NameError:
76
+ pass # not graalpy
77
+
78
port = None
79
event = threading.Event()
80
def server():
0 commit comments