Giter VIP home page Giter VIP logo

Comments (1)

alexmojaki avatar alexmojaki commented on August 26, 2024 1

Most of the test failures aren't astroid failures, so this is probably just about Python 3.12.

It looks like this is caused by f-strings having actual tokens now, e.g. this code:

foo = f'a {b} c {d} e'

is tokenized as:

0,0-0,0:            ENCODING       'utf-8'        
1,0-1,3:            NAME           'foo'          
1,4-1,5:            OP             '='            
1,6-1,8:            FSTRING_START  "f'"           
1,8-1,10:           FSTRING_MIDDLE 'a '           
1,10-1,11:          OP             '{'            
1,11-1,12:          NAME           'b'            
1,12-1,13:          OP             '}'            
1,13-1,16:          FSTRING_MIDDLE ' c '          
1,16-1,17:          OP             '{'            
1,17-1,18:          NAME           'd'            
1,18-1,19:          OP             '}'            
1,19-1,21:          FSTRING_MIDDLE ' e'           
1,21-1,22:          FSTRING_END    "'"            
1,22-1,23:          NEWLINE        '\n'           
2,0-2,0:            ENDMARKER      ''  

from asttokens.

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.