This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author eric.smith
Recipients eric.smith, gregory.p.smith, lys.nikolaou, miss-islington, pablogsal
Date 2022-01-29.03:21:39
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1643426499.4.0.471136152944.issue46503@roundup.psfhosted.org>
In-reply-to
Content
In case anyone cares: in a non-debug build, this error had no real effect. It just caused the "find the literal part of an fstring" routine to terminate early, but since the part that it had already identified was still in error, a syntax error was still raised.

For "\Nxy" it would terminate at "\Nx", instead of consuming the whole string. But since "\Nx" isn't a valid string (bad unicode name escape), it would raise the same syntax error as "\Nxy".
History
Date User Action Args
2022-01-29 03:21:39eric.smithsetrecipients: + eric.smith, gregory.p.smith, lys.nikolaou, pablogsal, miss-islington
2022-01-29 03:21:39eric.smithsetmessageid: <1643426499.4.0.471136152944.issue46503@roundup.psfhosted.org>
2022-01-29 03:21:39eric.smithlinkissue46503 messages
2022-01-29 03:21:39eric.smithcreate