Giter VIP home page Giter VIP logo

Comments (6)

GrahamDumpleton avatar GrahamDumpleton commented on May 25, 2024

If one assumes that the only things one should pickle from the proxy are the special 'self' prefixed attributes, since anything else is meant to be proxied through to the object, the list of attributes to use in __reduce__() could be calculated using:

filter(lambda _: _[0].startswith('_self_'), vars(self).items())

So long as you pick the attribute names as well, you have that when restoring it.

Would that work for what you have in mind?

from wrapt.

GrahamDumpleton avatar GrahamDumpleton commented on May 25, 2024

You may even be able to avoid __setstate__() if in __reduce__() the third argument is supplied as a dict.

dict(filter(lambda _: _[0].startswith('_self_'), vars(a).items()))

from wrapt.

GrahamDumpleton avatar GrahamDumpleton commented on May 25, 2024

Are you using Python 3?

I don't even get the same error as you for the initial example. I am using Python 2.7.

  File "/Users/graham/Projects/wrapt/venv/lib/python2.7/copy_reg.py", line 70, in _reduce_ex
    raise TypeError, "can't pickle %s objects" % base.__name__
TypeError: can't pickle int objects

Supplying a __reduce__() doesn't help as can't get past the above.

from wrapt.

simonzack avatar simonzack commented on May 25, 2024

Yes to all of the above :) vars is a good idea, didn't think of that. I think that would solve the problem.

from wrapt.

GrahamDumpleton avatar GrahamDumpleton commented on May 25, 2024

Did you try your examples you had with vars() and get something actually working? My initial attempt failed as per above. I haven't had a chance to dig deeper yet.

from wrapt.

simonzack avatar simonzack commented on May 25, 2024

Sorry about the late reply but you're right, it still fails. Perhaps an attribute list would work? At least in my case I don't use _self_xxx that often anyway, so the overhead is not that high.

from wrapt.

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.