Code Monkey home page Code Monkey logo

Comments (4)

hroncok avatar hroncok commented on July 18, 2024
compile('caller(i)}."', '', 'eval')

This will always fail, even on Python 3.9. I don't think the new exception text is the problem here.
The problem seem to be that the chunk is split at a weird location.

from kajiki.

ondrejj avatar ondrejj commented on July 18, 2024

Always fails, but with different message. Here is the code of kajiki/text.py:

    def _get_braced_expr(self):
        try:
            compile(self.source[self.pos:], '', 'eval')
        except SyntaxError as se:
            end = self.pos + sum([se.offset] + [len(line) + 1
                                                for idx, line in enumerate(self.
                                                if idx < se.lineno - 1])
            text = self.source[self.pos:end - 1]
            self.pos = end
            return self.expr(text)

When it fails in python3.10, exception's "se.offset" is different. Python3.10's error message is from end of this string and end position is computed differently, what causes to fail in kajiki tests.

from kajiki.

ondrejj avatar ondrejj commented on July 18, 2024

A short testing script, which displays, what's different:

import sys
print(sys.version)
try:
  compile('caller(i)}."', '', 'eval')
except SyntaxError as se:
  print(se)
  print(se.offset)

differences:

3.10.0b1 (default, May  4 2021, 00:00:00) [GCC 11.1.1 20210428 (Red Hat 11.1.1-1)]
unmatched '}' (, line 1)
10
3.10.0b2 (default, Jun  1 2021, 00:00:00) [GCC 11.1.1 20210531 (Red Hat 11.1.1-3)]
unterminated string literal (detected at line 1) (, line 1)
12

from kajiki.

jackrosenthal avatar jackrosenthal commented on July 18, 2024

Fixed by #52

from kajiki.

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.