Giter VIP home page Giter VIP logo

Comments (4)

Hornswoggles avatar Hornswoggles commented on May 25, 2024

Sorry should have mentioned that this is code run under python 2.7

from wrapt.

GrahamDumpleton avatar GrahamDumpleton commented on May 25, 2024

The quick answer is that you need to use:

super(Class2.__wrapped__, self).__init__()

I haven't looked closely at how super() works yet, but my expectation is that it only uses the result of type() and so there is not going to be a way of fooling it in a way so as to avoid needing to do this.

The wrapper in this case at least provides wrapped to allow you access to the original wrapped class, which would not necessarily be possible if traditional ways of using a function closure had been used, especially in Python 2.

In Python 3.X, the functools.wraps() does introduce the notion of wrapped so technically if people at least used functools.wraps() with a function closure based decorator then this will also work for Python 3 if not using wrapt decorators.

Either way, if decorating a class and the decorator function isn't just annotating the class and returning it, you need to use a mechanism like this to grab a reference to the original wrapped class in order to satisfy super().

I would imagine that if using Python 3, you can probably get away with using the new super() feature which avoids you needing to pass in the class type and self.

from wrapt.

Hornswoggles avatar Hornswoggles commented on May 25, 2024

Thanks for the explanation Graham. It's appreciated. I'm going to switch back to old style Class1.__init__(self) for now as this library is too cool to pass up. Could this be documented in the known issues section?

from wrapt.

GrahamDumpleton avatar GrahamDumpleton commented on May 25, 2024

Documentation added about this issue for version 1.7.0.

Interesting to note is that the new magic super() in Python 3 was in part driven by this issue with decorated classes and needing access to the original type. This is noted in following commentary.

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.