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


Groups > comp.lang.python > #40005

Re: python 3 problem: how to convert an extension method into a class Method

Path csiph.com!usenet.pasdenom.info!weretis.net!feeder1.news.weretis.net!feeder.erje.net!eu.feeder.erje.net!newsfeed.freenet.ag!news2.euro.net!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; 'argument': 0.04; 'heavily': 0.04; 'except:': 0.07; 'layers': 0.07; 'try:': 0.07; 'python': 0.09; 'assigning': 0.09; 'happen?': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'subject:into': 0.09; 'subject:method': 0.09; 'typeerror:': 0.09; 'def': 0.10; 'subject:python': 0.11; 'extension': 0.13; 'a():': 0.16; 'a.py': 0.16; 'given)': 0.16; 'lambda': 0.16; 'py3': 0.16; 'received:80.91.229.3': 0.16; 'received:dip.t-dialin.net': 0.16; 'received:plane.gmane.org': 0.16; 'received:t-dialin.net': 0.16; 'subject:class': 0.16; 'unbound': 0.16; 'wrote:': 0.17; '>>>': 0.18; 'module': 0.19; 'math': 0.20; 'import': 0.21; '"",': 0.22; 'subject:problem': 0.22; 'work.': 0.23; 'pass': 0.25; 'tried': 0.25; 'header:User-Agent:1': 0.26; '(most': 0.27; 'am,': 0.27; "doesn't": 0.28; 'header:X-Complaints-To:1': 0.28; 'all.': 0.28; 'fine': 0.28; 'methods.': 0.29; 'class': 0.29; 'stuff': 0.30; 'file': 0.32; 'traceback': 0.33; 'to:addr:python-list': 0.33; 'there': 0.35; 'received:org': 0.36; 'but': 0.36; 'method': 0.36; 'subject:: ': 0.38; 'fact': 0.38; 'some': 0.38; 'to:addr:python.org': 0.39; 'takes': 0.39; 'called': 0.39; 'header:Received:5': 0.40; 'skip:6 10': 0.63; 'times': 0.63; 'our': 0.65; 'skip:n 30': 0.69; '.....': 0.75; 'dumb': 0.84; 'forward.': 0.84; 'furman': 0.84; 'ethan': 0.91
X-Injected-Via-Gmane http://gmane.org/
To python-list@python.org
From Peter Otten <__peter__@web.de>
Subject Re: python 3 problem: how to convert an extension method into a class Method
Date Tue, 26 Feb 2013 21:54:29 +0100
Organization None
References <512CEF0C.3020906@chamonix.reportlab.co.uk> <512D18C2.5000802@stoneleaf.us>
Mime-Version 1.0
Content-Type text/plain; charset="ISO-8859-1"
Content-Transfer-Encoding 7Bit
X-Gmane-NNTP-Posting-Host p5084a143.dip.t-dialin.net
User-Agent KNode/4.7.3
X-BeenThere python-list@python.org
X-Mailman-Version 2.1.15
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.2575.1361912073.2939.python-list@python.org> (permalink)
Lines 60
NNTP-Posting-Host 2001:888:2000:d::a6
X-Trace 1361912073 news.xs4all.nl 6853 [2001:888:2000:d::a6]:48205
X-Complaints-To abuse@xs4all.nl
Xref csiph.com comp.lang.python:40005

Show key headers only | View raw


Ethan Furman wrote:

> On 02/26/2013 09:21 AM, Robin Becker wrote:
>> In python 2 I was able to improve speed of reportlab using a C extension
>> to optimize some heavily used methods.
>>
>> so I was able to do this
>>
>>
>> class A:
>>      .....
>>      def method(self,...):
>>         ....
>>
>>
>> try:
>>      from extension import c_method
>>      import new
>>      A.method = new.instancemethod(c_method,None,A)
>> except:
>>      pass
>>
>> and if the try succeeds our method is bound as a class method ie is
>> unbound and works fine when I call it.
>>
>> In python 3 this doesn't seem to work at all. In fact the new module is
>> gone. The types.MethodType stuff doesn't seem to work.
>>
>> Is there a way in Python 3.3 to make this happen? This particular method
>> is short, but is called many times so adding python wrapping layers is
>> not a good way forward.
> 
> Dumb question, but have you tried just assigning it?  In Py3 methods are
> just normal functions...
> 
> 8<----------------------
>    class A():
>        pass
> 
>    A.method = c_method
> 8<----------------------

The problem is that functions implemented in C don't support the descriptor 
protocol (they don't have a __get__() method). So

>>> from math import sqrt
>>> class A(int):
...     pass
... 
>>> A.c = sqrt
>>> A.py = lambda self: sqrt(self)
>>> a = A(42)
>>> a.py()
6.48074069840786
>>> a.c()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: sqrt() takes exactly one argument (0 given)

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


Thread

Re: python 3 problem: how to convert an extension method into a class Method Peter Otten <__peter__@web.de> - 2013-02-26 21:54 +0100

csiph-web