Commit e1a5a0b0 authored by Tres Seaver's avatar Tres Seaver

Whack dem Windows-only moles.

parent 008f5f15
...@@ -28,8 +28,9 @@ NUM = 100 ...@@ -28,8 +28,9 @@ NUM = 100
checker = renormalizing.RENormalizing([ checker = renormalizing.RENormalizing([
# Python 3 bytes add a "b". # Python 3 bytes add a "b".
(re.compile("b('.*?')"), (re.compile("b('.*?')"), r"\1"),
r"\1"), # Windows shows result from 'u64' as long?
(re.compile(r"(\d+)L"), r"\1"),
]) ])
class TestUtils(unittest.TestCase): class TestUtils(unittest.TestCase):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment