Code Monkey home page Code Monkey logo

Comments (3)

JelleZijlstra avatar JelleZijlstra commented on May 17, 2024 1

I'm making a change that specifically unifies the two error messages above (a NameError that talks about a free variable), which should hopefully ensure we don't miss anything else.

Agree about just stripping off .<listcomp>.

from compgenerator.

JelleZijlstra avatar JelleZijlstra commented on May 17, 2024

Similarly, the qualname of lambdas defined inside a listcomp changes:

E         {'__a': {'__a': '<function __a.<locals>.<listcomp>.<lambda> at 0x...>', '__b': "'arg0'"}} != {'__a': {'__a': '<function __a.<locals>.<lambda> at 0x...>', '__b': "'arg0'"}}

from compgenerator.

carljm avatar carljm commented on May 17, 2024

It's neat to see the fuzzer actually working and finding things :)

Since UnboundLocalError is a subclass of NameError, I'm not sure this even rises to the level of needing mention in news? But happy to add an entry if you think that'd be best.

For ignoring this, we could use a regex to extract the variable name from NameError or UnboundLocalError and then simplify the representation of both errors to something simpler like "NameError: a".

Though that would also ignore a case where we changed an UnboundLocalError to a NameError -- I don't think 709 should ever do that, but I would want the fuzzer to find it if we did.

I guess we could transform all NameError to the simpler error message form, but only transform UnboundLocalError to the simpler form of NameError on the remote evalserver. Then we'd catch it in one direction but ignore it in the other.

I think the qualname change should be ignored; we should be able to just strip .<listcomp> from qualnames to do that?

from compgenerator.

Related Issues (4)

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.