On Wed, Jun 21, 2017 at 12:41 PM, Jeroen Demeyer
wrote:
> On 2017-06-21 20:25, Robert Bradshaw wrote:
>
>> I suppose in that case we just got lucky that no one cimported these
>> classes and tried to use methods after this point in the vtable...
>>
>
> I think that's the case indeed.
In fact, J
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 additional
> object field. So, just extending the freelist support to use two dif
Thanks.
David
On Wed, Feb 13, 2013 at 10:29 PM, Robert Bradshaw wrote:
> This is due to the archaic --disable-function-redefinition flag.
>
> On Mon, Feb 4, 2013 at 4:28 PM, David Roe wrote:
> > Hi everyone,
> > I ran into the following problem using Cython 0.17.4 (curren
Hi everyone,
I ran into the following problem using Cython 0.17.4 (current version of
Sage).
If you try to compile a file with the following function in it:
def test_double_gen(L):
a = all(x != 0 for x in L)
b = all(x != 1 for x in L)
return a and b
you get errors from the Cython com