[PATCH 05 of 10] py3: fix type of string literals in templater.tokenize()

Yuya Nishihara yuya at tcha.org
Thu Mar 1 19:26:24 EST 2018


# HG changeset patch
# User Yuya Nishihara <yuya at tcha.org>
# Date 1519941398 18000
#      Thu Mar 01 16:56:38 2018 -0500
# Node ID 3a9920b08348866d5d9f2f85b9d332544686b843
# Parent  47a09e779081aed563018208407c771ede557ffd
py3: fix type of string literals in templater.tokenize()

# skip-blame because just b'' prefixes

diff --git a/mercurial/templater.py b/mercurial/templater.py
--- a/mercurial/templater.py
+++ b/mercurial/templater.py
@@ -98,8 +98,8 @@ def tokenize(program, start, end, term=N
                 pos += 1
             yield ('integer', program[s:pos], s)
             pos -= 1
-        elif (c == '\\' and program[pos:pos + 2] in (r"\'", r'\"')
-              or c == 'r' and program[pos:pos + 3] in (r"r\'", r'r\"')):
+        elif (c == '\\' and program[pos:pos + 2] in (br"\'", br'\"')
+              or c == 'r' and program[pos:pos + 3] in (br"r\'", br'r\"')):
             # handle escaped quoted strings for compatibility with 2.9.2-3.4,
             # where some of nested templates were preprocessed as strings and
             # then compiled. therefore, \"...\" was allowed. (issue4733)


More information about the Mercurial-devel mailing list