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


Groups > comp.lang.python > #39976

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

From Robin Becker <robin@reportlab.com>
Subject python 3 problem: how to convert an extension method into a class Method
Date 2013-02-26 17:21 +0000
Newsgroups comp.lang.python
Message-ID <mailman.2558.1361899289.2939.python-list@python.org> (permalink)

Show all headers | View raw


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.

If the above cannot be made to work (another great victory for Python 3) then is 
there a way to bind an external method to the instance without incurring too 
much overhead.

Alternatively could it make sense to implement an accelerated basetype that just 
contains the accelerated methods of class A. I could then imagine doing 
something like

try:
     from extension import class c_baseA as baseA
except:
     class baseA:
        def method(....)

class A(baseA):
     .....

presumably I then get some kind of penalty for the base class lookup, but how 
bad is that?
-- 
Robin Becker

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


Thread

python 3 problem: how to convert an extension method into a class Method Robin Becker <robin@reportlab.com> - 2013-02-26 17:21 +0000
  Re: python 3 problem: how to convert an extension method into a class Method Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2013-02-27 04:46 +0000

csiph-web