Commit e1a5a0b0 authored by Tres Seaver's avatar Tres Seaver

Whack dem Windows-only moles.

parent 008f5f15
......@@ -27,9 +27,10 @@ NUM = 100
checker = renormalizing.RENormalizing([
# Python 3 bytes add a "b".
(re.compile("b('.*?')"),
r"\1"),
# Python 3 bytes add a "b".
(re.compile("b('.*?')"), r"\1"),
# Windows shows result from 'u64' as long?
(re.compile(r"(\d+)L"), r"\1"),
])
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