Giter Club home page Giter Club logo

Comments (5)

GrahamDumpleton avatar GrahamDumpleton commented on July 26, 2024

What is it that you are trying to do that requires this? Knowing the underlying reason, rather than what you think may be the solution will help me guide you better as to what is the best approach to solving the actual problem.

from wrapt.

dgrigonis avatar dgrigonis commented on July 26, 2024

I have a descriptor:

class Descriptor(ObjectProxy):
    def __init__(self, attr)
        self.attr = attr

    def __call__(self, wrapped):
        super().__init__(wrapped)

    def __get__(self, inst, owner):
        return self.__wrapped__(self.attr)

So I want to keep inheriting from ObjectProxy, but at the same time I want to store some attributes in descriptor class. If I do it the way I did in my example:

  1. It raises an error because I am assigning it before ObjectProxy was initialised.
  2. Even if it was (I could initialise it with empty namespace and then re-initialise it), it would assign attribute to wrapped rather than descriptor class.

As I said, I could assign to attribute name _self_attr and it would work, but I have more than one and I would prefer to have an access to actual __dict__ of ObjectProxy than need to use _self_ starting attribute names.

Currently I made one myself via:

class ObjectProxy(wrapt.ObjectProxy):
    def __init__(self, *args, **kwds):
        super().__init__(*args, **kwds)
        if not hasattr(self, '_self_dict__'):
            setattr(self, '_self_dict__', dict())

    @property
    def __dictp__(self):
        return getattr(self, '_self_dict__')

However, I would like to avoid extra function call if there was a way to do it cleaner.

from wrapt.

mentalisttraceur avatar mentalisttraceur commented on July 26, 2024

I think object.__getattribute__(p, "foo") and object.__setattr__(p, "foo", new_value) would work to get and set attributes in p's __dict__. Haven't tested but pretty sure.

And so object.__getattribute__(p, "__dict__") might work to get the proxy's attribute dict. Only slightly less confident this would also work.

But I agree with Graham's gentle resistance to this - maybe you shouldn't mess with the wrapper's dict. In fact, I would assume that the object proxy's dict is considered a private space for wrapt implementation details, where your usage might randomly break things or be randomly broken.

from wrapt.

dgrigonis avatar dgrigonis commented on July 26, 2024

These don't work for C implementation, however I am pretty sure they do in pure python.

Making it work in C, would make these more similar :)

from wrapt.

GrahamDumpleton avatar GrahamDumpleton commented on July 26, 2024

Look at #255 (comment)

Didn't occur to me before to add a dummy class attribute so that assignment to instance in constructor would then use the instance rather than wrapped object.

This may be a solution for what ultimately you are trying to do if the intent was attributes exclusively on the wrapper, without using _self_ prefix.

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.