commit | 9c14f2f3437d295ea4e858103cff2197e508ef10 | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Thu Oct 21 13:29:10 2010 +0000 |
committer | Georg Brandl <georg@python.org> | Thu Oct 21 13:29:10 2010 +0000 |
tree | 93103a654317a88a582a5425eb0216f57dc796e0 | |
parent | a847ccbeaefdd15fa093067f171605e3a5f9a866 [diff] [blame] |
#3077: fix h2py substitution of character literals.
diff --git a/Tools/scripts/h2py.py b/Tools/scripts/h2py.py index f3c80bd..45aa439 100755 --- a/Tools/scripts/h2py.py +++ b/Tools/scripts/h2py.py
@@ -87,7 +87,7 @@ for p in ignores: body = p.sub(' ', body) # replace char literals by ord(...) - body = p_char.sub('ord(\\0)', body) + body = p_char.sub("ord('\\1')", body) # Compute negative hexadecimal constants start = 0 UMAX = 2*(sys.maxsize+1)