Git Product home page Git Product logo

Comments (4)

thautwarm avatar thautwarm commented on July 19, 2024

I suggest removing types.CodeType here.

from bytecode.

thautwarm avatar thautwarm commented on July 19, 2024

As the tuple and frozenset could consist of mutable data, following return (obj_type, obj, key) wouldn't work in the above case.

https://github.com/vstinner/bytecode/blob/45d643f6a706ae95586a874ea0fbcb18e797bfa1/bytecode/instr.py#L69

https://github.com/vstinner/bytecode/blob/45d643f6a706ae95586a874ea0fbcb18e797bfa1/bytecode/instr.py#L73

from bytecode.

MatthieuDartiailh avatar MatthieuDartiailh commented on July 19, 2024

We end up having an issue with CodeType because we allow to build weird code type that end up being unhashable which usually never happens. I am not sure what relying on id for CodeType could lead too and why CPython does not do it (an idea @serhiy-storchaka ?). Depending on the answer we may need to "legalize" the CodeType to be able to use it as key.

Regarding tuple and frozenset your argument seem valid, I would need to think more about possible corner cases. Could you make a PR in the meantime ?

For reference the current CPython implementation is here : https://github.com/python/cpython/blob/master/Objects/codeobject.c#L678

from bytecode.

thautwarm avatar thautwarm commented on July 19, 2024

I am not sure what relying on id for CodeType could lead too and why CPython does not do it

For CPython implementation, all constants can be serialized by marshal.dumps. So keeping this function simple suffices and is more efficient.

As a user of bytecode, IMO we're working with code objects and trying to do optimizations on them. Constant linking to avoid loading variables from global scope is really a huge performance gain in many cases, so it's indeed a use case.

Regarding tuple and frozenset your argument seem valid, I would need to think more about possible corner cases. Could you make a PR in the meantime ?

Yes. In fact I have come up with a proven method to implement const_key . I'll explain in the PR later.

from bytecode.

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.