##// END OF EJS Templates
py3: fix mixed bytes/unicode in revsetlang._aliassyminitletters
Yuya Nishihara -
r34071:e18119b1 default
parent child Browse files
Show More
@@ -473,7 +473,7 b' def optimize(tree):'
473
473
474 # the set of valid characters for the initial letter of symbols in
474 # the set of valid characters for the initial letter of symbols in
475 # alias declarations and definitions
475 # alias declarations and definitions
476 _aliassyminitletters = _syminitletters | set(pycompat.sysstr('$'))
476 _aliassyminitletters = _syminitletters | {'$'}
477
477
478 def _parsewith(spec, lookup=None, syminitletters=None):
478 def _parsewith(spec, lookup=None, syminitletters=None):
479 """Generate a parse tree of given spec with given tokenizing options
479 """Generate a parse tree of given spec with given tokenizing options
General Comments 0
You need to be logged in to leave comments. Login now