We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f22846 commit 6cf8f15Copy full SHA for 6cf8f15
cuda_bindings/tests/test_cython_abi.py
@@ -48,7 +48,7 @@ def pyx_capi_to_json(d: dict[str, object]) -> dict[str, str]:
48
49
def extract_name(v: object) -> str:
50
v = str(v)
51
- match = re.match(r'<capsule object "([^\"]+)" at 0x[0-9a-f]+>', v)
+ match = re.match(r'<capsule object "([^\"]+)" at 0x[0-9a-fA-F]+>', v)
52
assert match, f"Could not parse __pyx_capi__ entry: {v}"
53
return match.group(1)
54
0 commit comments