-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Expressions with format specifiers in f-strings have incorrect offsets #31
Comments
Ha! Thanks for catching this. I'll look into it. (Unless someone else wants to supply a patch...) |
I'm wondering if that's actually a bug in Python. Compare these two syntax trees:
The relevant part here is that the name
but in the second one at
although we're just adding a format specifier, not changing the position of the name in the source. To me it seems like the the column offset should remain at 3 chars. (Because Can someone have a look at this as well? I'm tempted to file an issue in the Python tracker, but I may be overlooking something. |
I filed a bug: https://bugs.python.org/issue35212 |
Sorry I just went though python tutorial, can't help at all. |
hmm I am getting this as well :D... seems like the bug is still not fixed from Python side :(... |
I'm currently experimenting with a parser based on tree-sitter instead of relying on Python's AST module. Once implemented, that would also eliminate bugs like this one. |
I suggest putting this behind a feature flag and have a default value to be which ever one is more stable. Sure tree-sitter may work but I think Python AST may stick closer with the language to help with newer syntax(s) in the future |
I'm seeing this as well - semshi is a great plugin, but this is really distracting. f-strings are all over my code. Looking into it a little.. Seems there's more going on beyond the case listed above. I think maybe it's not a bug in Python and your logic needs to detect Integrating a completely different solution (tree-sitter via built-in ast), imo, seems risky. |
I have the same problem, does everyone have it? :( |
hey man, First of all, this is a great plugin!! Probably the top plugin. But, unfortunately, this bug is turning out to be a bummer. I use semshi daily since I code in nvim and this is messing up the beautiful highlightings 😞. I'll definitely try something out from my end but I'm a beginner so let me see. Also hope your doing well with pandemic going on |
More complaining about this bug. Any updates? This really makes me avoid f-strings, which is a shame. Otherwise, love this plugin!! |
As of August 2021, this has been fixed in python upstream: bpo-44885 (python/cpython#89048) -- fixed by python/cpython#27729.
|
The text was updated successfully, but these errors were encountered: