don't use octal syntax, since its not py2/py3 compatible
This commit is contained in:
parent
d02eaa8881
commit
1c817aa7bd
|
@ -356,7 +356,7 @@ def test_invalid_xml_escape():
|
|||
unichr = chr
|
||||
u = py.builtin._totext
|
||||
invalid = (0x00, 0x1, 0xB, 0xC, 0xE, 0x19,
|
||||
033, # issue #126
|
||||
27, # issue #126
|
||||
0xD800, 0xDFFF, 0xFFFE, 0x0FFFF) #, 0x110000)
|
||||
valid = (0x9, 0xA, 0x20,) # 0xD, 0xD7FF, 0xE000, 0xFFFD, 0x10000, 0x10FFFF)
|
||||
|
||||
|
|
Loading…
Reference in New Issue