Python: Accept test changes. I think these reflect the 'parse mode chars should not be considered chars' issue.

This commit is contained in:
Geoffrey White
2023-08-24 10:48:52 +01:00
parent a0b784e7b1
commit f07f97a94e
4 changed files with 6 additions and 3 deletions

View File

@@ -77,9 +77,11 @@
| (?P<name>[\\w]+)\| | sequence | 0 | 15 |
| (?m)^(?!$) | $ | 8 | 9 |
| (?m)^(?!$) | ^ | 4 | 5 |
| (?m)^(?!$) | empty group | 0 | 4 |
| (?m)^(?!$) | char | 2 | 3 |
| (?m)^(?!$) | empty group | 5 | 10 |
| (?m)^(?!$) | non-empty group | 0 | 4 |
| (?m)^(?!$) | sequence | 0 | 10 |
| (?m)^(?!$) | sequence | 2 | 3 |
| (?m)^(?!$) | sequence | 8 | 9 |
| (\\033\|~{) | char | 1 | 5 |
| (\\033\|~{) | char | 6 | 7 |