# HG changeset patch # User Yuya Nishihara # Date 1489364034 25200 # Node ID fac5cd3b8673beaad35f52be09ee8358e133247c # Parent 7556fe09cc48543c1ff46bff230bb7f6e9f793e0 py3: make set of revset operators and quotes in bytes diff -r 7556fe09cc48 -r fac5cd3b8673 mercurial/revsetlang.py --- a/mercurial/revsetlang.py Sun Mar 12 17:10:14 2017 -0700 +++ b/mercurial/revsetlang.py Sun Mar 12 17:13:54 2017 -0700 @@ -45,6 +45,9 @@ keywords = set(['and', 'or', 'not']) +_quoteletters = set(['"', "'"]) +_simpleopletters = set(pycompat.iterbytestr("():=,-|&+!~^%")) + # default set of valid characters for the initial letter of symbols _syminitletters = set(pycompat.iterbytestr( string.ascii_letters.encode('ascii') + @@ -109,9 +112,9 @@ elif c == '#' and program[pos:pos + 2] == '##': # look ahead carefully yield ('##', None, pos) pos += 1 # skip ahead - elif c in "():=,-|&+!~^%": # handle simple operators + elif c in _simpleopletters: # handle simple operators yield (c, None, pos) - elif (c in '"\'' or c == 'r' and + elif (c in _quoteletters or c == 'r' and program[pos:pos + 2] in ("r'", 'r"')): # handle quoted strings if c == 'r': pos += 1