You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.
Interesting. I can confirm that it generates the correct code with language level 2, but fails with language level 3. My guess was that this is due to the string formatting optimisation into f-strings, which was added in 0.28 and only applies to unicode strings (not Py2 byte strings). The expression then becomes f"{'2'} {*args}", and that does not work. Looks like we have to explicitly exclude star-expressions.
The text was updated successfully, but these errors were encountered: