##// END OF EJS Templates
py3: add b'' prefix to make the regex bytes...
Pulkit Goyal -
r38269:47b92406 default
parent child Browse files
Show More
@@ -2646,7 +2646,7 b' class TestRunner(object):'
2646 expanded_args.append(arg)
2646 expanded_args.append(arg)
2647 args = expanded_args
2647 args = expanded_args
2648
2648
2649 testcasepattern = re.compile(r'([\w-]+\.t|py)(#([^\s]+))')
2649 testcasepattern = re.compile(br'([\w-]+\.t|py)(#([^\s]+))')
2650 tests = []
2650 tests = []
2651 for t in args:
2651 for t in args:
2652 case = None
2652 case = None
General Comments 0
You need to be logged in to leave comments. Login now