Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #104097

Can I find the class of a method in a decorator.

From Antoon Pardon <antoon.pardon@rece.vub.ac.be>
Newsgroups comp.lang.python
Subject Can I find the class of a method in a decorator.
Date 2016-03-05 16:05 +0100
Message-ID <mailman.225.1457190403.20602.python-list@python.org> (permalink)

Show all headers | View raw


Using python 3.4/3.5

Suppose I have the following class:

class Tryout:

    @extern
    def method(self, ...)

Now how can I have access to the Tryout class in
the extern function when it is called with method
as argument

def extern(f):
    the_class = ????

f.__class doesn't work, if I write the following

def extern(f)
    print(f.__class__)

the result is: <class 'function'>, so that doesn't work.
Looking around I didn't find an other obvious candidate
to try. Anybody an idea?

-- 
Antoon Pardon

Back to comp.lang.python | Previous | Next | Find similar | Unroll thread


Thread

Can I find the class of a method in a decorator. Antoon Pardon <antoon.pardon@rece.vub.ac.be> - 2016-03-05 16:05 +0100

csiph-web