We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e6b32b commit befbd31Copy full SHA for befbd31
tests/test_charliterals.py
@@ -21,7 +21,7 @@ def test_character_literals(self):
21
try:
22
re.match("\911", "")
23
except Exception as exp:
24
- assert exp.msg == "invalid group reference 91 at position 1"
+ assert exp.msg == "invalid escape sequence: \9"
25
26
27
def test_character_class_literals(self):
@@ -37,4 +37,4 @@ def test_character_class_literals(self):
37
38
re.match("[\911]", "")
39
40
0 commit comments