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.Dismiss alert
Disable fstring self-doc detection by default (#39)
This is done since the built-in AST cannot distinguish f'{a=}' from f'a={a}', for instance, because it optimizes some information away. And this incorrectly marks some source code as using fstring self-doc when only using general fstring.
fstring self-doc detection can be enabled via --feature fstring-self-doc, though it is seen as unstable at this point
Correctly enumerate backport modules for stringification (it was correct but now it isn't using a hardcoded list of modules to determine maximum string lengh)