From 08572f68a980576e883e4eba1227b59782d5192e Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Mon, 14 Mar 2016 21:55:43 +0100 Subject: Issue #26516: Fix test_capi on AIX Fix regex for parse a pointer address. --- Lib/test/test_capi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_capi.py b/Lib/test/test_capi.py index 5761686..6c940ef 100644 --- a/Lib/test/test_capi.py +++ b/Lib/test/test_capi.py @@ -561,7 +561,7 @@ class Test_testcapi(unittest.TestCase): class MallocTests(unittest.TestCase): ENV = 'debug' # '0x04c06e0' or '04C06E0' - PTR_REGEX = r'(?:0x[0-9a-f]+|[0-9A-F]+)' + PTR_REGEX = r'(?:0x)?[0-9a-fA-F]+' def check(self, code): with support.SuppressCrashReport(): -- cgit v0.12