Giter VIP home page Giter VIP logo

Comments (4)

newville avatar newville commented on May 31, 2024

@scuenda Hmm, I don't see that with the master branch.

I do see a different problem on the master branch in that string formatting like you've done with the very convenient but easy-to-exploit str.format is now (as of two days ago: 585f597) disallowed.

But for me, this::

from asteval import Interpreter

aeval = Interpreter()
code="""
def fun(x):
    return x

def fun2(x):
    y=fun(x)
    print("After fun, y = %d" %  y)
    return y+1

x=1
y=fun2(x)
print("should be y=%d, and it is: y=%d" % (x+1,y))
"""
aeval(code)

prints

After fun, y = 1
should be y=2, and it is: y=2

Does that work for you?

from asteval.

scuenda avatar scuenda commented on May 31, 2024

Yes, it does, thank you very much.

The problem was in the version that I was using (0.9.8, installed from pip last week), not in the "format" limitation. I see that the development version has solved the issue of nested procedures. My apologies for not trying this version in the first place.

from asteval.

newville avatar newville commented on May 31, 2024

@scuenda oh, no problem. I think we'll need to push out a release of 0.9.9 soon.

from asteval.

newville avatar newville commented on May 31, 2024

fixed in 0.9.9

from asteval.

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.