We are failing to raise syntax error for misformed unicode character names so something is going on with the tokenizer. Some example tests that fail is test_misformed_unicode_character_name:
FAIL: test_misformed_unicode_character_name (test.test_fstring.TestCase) (str="f'\\N'")\n----------------------------------------------------------------------
Traceback (most recent call last):
File "/home/pablogsal/github/python/f-string-grammar/Lib/test/test_fstring.py", line 32, in assertAllRaise
with self.assertRaisesRegex(exception_type, regex):
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
AssertionError: SyntaxError not raised
We are failing to raise syntax error for misformed unicode character names so something is going on with the tokenizer. Some example tests that fail is
test_misformed_unicode_character_name
: