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 8ea9e7d commit a6d8093Copy full SHA for a6d8093
graalpython/com.oracle.graal.python.test/src/tests/cpyext/test_ctypes.py
@@ -249,5 +249,5 @@ def test_meson_windows_detect_native_arch() -> str:
249
if kernel32.IsWow64Process2(process, ctypes.byref(process_arch), ctypes.byref(native_arch)):
250
assert native_arch.value == 0x8664, "only amd64 supported by GraalPy on Windows"
251
except AttributeError as e:
252
- if not "Unknown identifier: IsWow64Process2" in str(e):
+ if not "function 'IsWow64Process2' not found" in str(e):
253
raise e
0 commit comments