Re: [Cython] [cython-users] freelist benchmarks

2013-02-25 Thread Stefan Behnel
Hi, thanks for looking through it. David Roe, 25.02.2013 00:00: > I changed the current type pointer check to look at tp_basicsize instead. > >> That made it work for almost all classes in lxml's own Element hierarchy, >> with only a couple of exceptions in lxml.objectify that have one additiona

[Cython] No matching signature with fused memoryview and None default

2013-02-25 Thread Dave Hirschfeld
With the following code I get a "No matching signature found" error. Is this a bug? ``` %%cython cimport cython ctypedef fused floating: cython.double cython.float def nosignature(floating[:] x, floating[:] myarray = None): print myarray is None return x ``` In [39]: nosignatur