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 83ec06b commit 89b18a3Copy full SHA for 89b18a3
graalpython/com.oracle.graal.python.test/src/tests/test_repl.py
@@ -38,8 +38,9 @@
38
# SOFTWARE.
39
40
import sys
41
+import platform
42
-if sys.platform != 'win32' and (sys.implementation.name != 'graalpy' or __graalpython__.posix_module_backend() != 'java'):
43
+if (sys.platform != 'win32' and (sys.platform != 'linux' or platform.machine() != 'aarch64')) and (sys.implementation.name != 'graalpy' or __graalpython__.posix_module_backend() != 'java'):
44
import os
45
import re
46
import select
0 commit comments