Giter Site home page Giter Site logo

Comments (12)

jjmachan avatar jjmachan commented on June 20, 2024 4

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
well wishes 😄

from semshi.

numirias avatar numirias commented on June 20, 2024 2

I filed a bug: https://bugs.python.org/issue35212

from semshi.

numirias avatar numirias commented on June 20, 2024

Ha! Thanks for catching this. I'll look into it. (Unless someone else wants to supply a patch...)

from semshi.

numirias avatar numirias commented on June 20, 2024

I'm wondering if that's actually a bug in Python. Compare these two syntax trees:

>>> ast.parse("f'{a}'")
Module(
    body=[
        Expr(
            lineno=1,
            col_offset=0,
            value=JoinedStr(
                lineno=1,
                col_offset=0,
                values=[
                    FormattedValue(
                        lineno=1,
                        col_offset=0,
                        value=Name(lineno=1, col_offset=3, id='a', ctx=Load()),
                        conversion=-1,
                        format_spec=None,
                    ),
                ],
            ),
        ),
    ],
)
>>> ast.parse("f'{a:b}'")
Module(
    body=[
        Expr(
            lineno=1,
            col_offset=0,
            value=JoinedStr(                        col_offset=0,
                lineno=1,
                col_offset=0,
                values=[
                    FormattedValue(
                        lineno=1,
                        col_offset=0,
                        value=Name(lineno=1, col_offset=1, id='a', ctx=Load()),
                        conversion=-1,
                        format_spec=JoinedStr(
                            lineno=1,
                            col_offset=0,
                            values=[Str(lineno=1, col_offset=0, s='b')],
                        ),
                    ),
                ],
            ),
        ),
    ],
)

The relevant part here is that the name a in the first f-string is positioned at

Name(lineno=1, col_offset=3, id='a', ctx=Load())

but in the second one at

Name(lineno=1, col_offset=1, id='a', ctx=Load())

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 f'{ are three characters.)

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.

from semshi.

alexcres avatar alexcres commented on June 20, 2024

Sorry I just went though python tutorial, can't help at all.

from semshi.

sluongng avatar sluongng commented on June 20, 2024

hmm I am getting this as well :D... seems like the bug is still not fixed from Python side :(...

from semshi.

numirias avatar numirias commented on June 20, 2024

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.

from semshi.

sluongng avatar sluongng commented on June 20, 2024

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

from semshi.

p5a0u9l avatar p5a0u9l commented on June 20, 2024

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..

image

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 format_spec is not None and have different behavior in that case.

Integrating a completely different solution (tree-sitter via built-in ast), imo, seems risky.

from semshi.

sefechit avatar sefechit commented on June 20, 2024

I have the same problem, does everyone have it? :(

from semshi.

holmescharles avatar holmescharles commented on June 20, 2024

More complaining about this bug. Any updates? This really makes me avoid f-strings, which is a shame.

Otherwise, love this plugin!!

from semshi.

wookayin avatar wookayin commented on June 20, 2024

As of August 2021, this has been fixed in python upstream:

bpo-44885 (python/cpython#89048) -- fixed by python/cpython#27729.

  • python 3.9.7+
  • python 3.10.0 or higher

from semshi.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.