Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #21807
| Path | csiph.com!usenet.pasdenom.info!gegeweb.org!de-l.enfer-du-nord.net!feeder1.enfer-du-nord.net!newsfeed.eweka.nl!eweka.nl!feeder3.eweka.nl!newsfeed.xs4all.nl!newsfeed6.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail |
|---|---|
| Return-Path | <python-python-list@m.gmane.org> |
| X-Original-To | python-list@python.org |
| Delivered-To | python-list@mail.python.org |
| X-Spam-Status | OK 0.000 |
| X-Spam-Evidence | '*H*': 1.00; '*S*': 0.00; 'instance,': 0.05; 'subject:Python': 0.05; 'none:': 0.07; 'override': 0.07; 'ugly': 0.07; 'python': 0.08; 'assert': 0.09; 'foo': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'subject:method': 0.09; 'subject:reference': 0.09; 'def': 0.13; "subject:' ": 0.15; 'luna': 0.16; 'name):': 0.16; 'py3k': 0.16; 'received:dip.t-dialin.net': 0.16; 'received:t-dialin.net': 0.16; 'self)': 0.16; 'subject:which': 0.16; 'wrote:': 0.18; 'instance': 0.18; 'from:addr:web.de': 0.23; 'defined': 0.24; 'skip:m 30': 0.24; 'code': 0.26; 'says': 0.27; "i'm": 0.28; 'pass': 0.29; 'class': 0.29; 'skip:b 20': 0.29; 'but...': 0.30; 'porting': 0.30; 'equivalent': 0.31; 'quite': 0.31; 'subject:?': 0.31; 'does': 0.32; 'there': 0.33; 'header:User-Agent:1': 0.33; 'header:X -Complaints-To:1': 0.34; 'to:addr:python-list': 0.35; 'subject:How': 0.35; 'received:org': 0.36; 'but': 0.37; 'reference': 0.37; 'skip:_ 10': 0.38; 'think': 0.38; 'to:addr:python.org': 0.40; "'foo'": 0.84; 'controller,': 0.84; 'controller': 0.91 |
| X-Injected-Via-Gmane | http://gmane.org/ |
| To | python-list@python.org |
| From | Peter Otten <__peter__@web.de> |
| Subject | Re: How to get a reference of the 'owner' class to which a method belongs in Python 3.X? |
| Date | Sat, 17 Mar 2012 10:25:06 +0100 |
| Organization | None |
| References | <20411334.2044.1331962234309.JavaMail.geo-discussion-forums@yncd8> |
| Mime-Version | 1.0 |
| Content-Type | text/plain; charset="ISO-8859-1" |
| Content-Transfer-Encoding | 7Bit |
| X-Gmane-NNTP-Posting-Host | p50849242.dip.t-dialin.net |
| User-Agent | KNode/4.7.3 |
| X-BeenThere | python-list@python.org |
| X-Mailman-Version | 2.1.12 |
| Precedence | list |
| List-Id | General discussion list for the Python programming language <python-list.python.org> |
| List-Unsubscribe | <http://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe> |
| List-Archive | <http://mail.python.org/pipermail/python-list> |
| List-Post | <mailto:python-list@python.org> |
| List-Help | <mailto:python-list-request@python.org?subject=help> |
| List-Subscribe | <http://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.754.1331976324.3037.python-list@python.org> (permalink) |
| Lines | 80 |
| NNTP-Posting-Host | 2001:888:2000:d::a6 |
| X-Trace | 1331976324 news.xs4all.nl 6856 [2001:888:2000:d::a6]:59794 |
| X-Complaints-To | abuse@xs4all.nl |
| Xref | csiph.com comp.lang.python:21807 |
Show key headers only | View raw
Cosmia Luna wrote:
> I'm porting my existing work to Python 3.X, but...
>
> class Foo:
> def bar(self):
> pass
>
> mthd = Foo.bar
>
> assert mthd.im_class is Foo # this does not work in py3k
>
> So, how can I get a reference to Foo? This is important when writing
> decorators, the only way I can think out is:
>
> class Foo:
> def bar(self):
> 'Foo' # manually declare the owner class
> pass
>
> mthd = Foo.bar
>
> assert mthd.__globals__[mthd.__doc__] is Foo # this works
>
> class Child(Foo):
> def bar(self):
> 'Child' # I have to override all method defined by bar but do
> nothing pass
>
> child_mthd = Child.bar
>
> assert child_mthd.__globals__[child_mthd.__doc__] is Child # this works
>
> But the code above is quite ugly and abuses the __doc__. Is there any
> equivalent in py3k of im_class?
class set_class:
def __init__(self, method):
self.method = method
def __get__(self, instance, class_):
if instance is None:
method = self.method
def f(*args, **kw):
return method(*args, **kw)
f.im_class = class_
f.__name__ = method.__name__
return f
return self.method.__get__(instance, class_)
class Foo:
def __init__(self, name):
self.name = name
@set_class
def bar(self):
print("%s says hello from bar()" % self)
def __str__(self):
return self.name
class Bar(Foo):
pass
assert Foo.bar.im_class is Foo
assert Bar.bar.im_class is Bar
Foo("Fred").bar()
Foo.bar(Foo("Fred"))
Bar("Fred").bar()
Bar.bar(Bar("Fred"))
The cleaner approach is probably:
Rule('/<action>/', endpoint=(RootController, RootController.otheraction))
...
Controller, method = endpoint
controller = Controller(Request(environ))
...
method(controller)
Back to comp.lang.python | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
How to get a reference of the 'owner' class to which a method belongs in Python 3.X? Cosmia Luna <cosmius@gmail.com> - 2012-03-16 22:30 -0700
Re: How to get a reference of the 'owner' class to which a method belongs in Python 3.X? Chris Rebert <clp2@rebertia.com> - 2012-03-16 22:51 -0700
Re: How to get a reference of the 'owner' class to which a method belongs in Python 3.X? Richard Thomas <chardster@gmail.com> - 2012-03-17 00:34 -0700
Re: How to get a reference of the 'owner' class to which a method belongs in Python 3.X? Cosmia Luna <cosmius@gmail.com> - 2012-03-17 01:11 -0700
Re: How to get a reference of the 'owner' class to which a method belongs in Python 3.X? Peter Otten <__peter__@web.de> - 2012-03-17 10:25 +0100
Re: How to get a reference of the 'owner' class to which a method belongs in Python 3.X? Cosmia Luna <cosmius@gmail.com> - 2012-03-17 03:04 -0700
Re: How to get a reference of the 'owner' class to which a method belongs in Python 3.X? Cosmia Luna <cosmius@gmail.com> - 2012-03-17 05:21 -0700
Re: How to get a reference of the 'owner' class to which a method belongs in Python 3.X? Cosmia Luna <cosmius@gmail.com> - 2012-03-18 02:42 -0700
Re: How to get a reference of the 'owner' class to which a method belongs in Python 3.X? Cosmia Luna <cosmius@gmail.com> - 2012-03-18 02:42 -0700
Re: How to get a reference of the 'owner' class to which a method belongs in Python 3.X? Ian Kelly <ian.g.kelly@gmail.com> - 2012-03-18 10:14 -0600
Re: How to get a reference of the 'owner' class to which a method belongs in Python 3.X? Cosmia Luna <cosmius@gmail.com> - 2012-03-17 05:21 -0700
Re: How to get a reference of the 'owner' class to which a method belongs in Python 3.X? Cosmia Luna <cosmius@gmail.com> - 2012-03-17 03:04 -0700
Re: How to get a reference of the 'owner' class to which a method belongs in Python 3.X? Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2012-03-17 10:01 +0000
csiph-web