Re: [Cython] Segfault with large cdef'd list

2018-01-08 Thread Dan Stromberg
On Sun, Jan 7, 2018 at 2:18 AM, Stefan Behnel wrote: > Robert Bradshaw schrieb am 07.01.2018 um 09:48: >> Cython itself doesn't impose any limits, but it does inherit whatever >> limit exists in the C complier and runtime. The variance may be due to >> whatever else happens to be placed on the sta

Re: [Cython] Segfault with large cdef'd list

2018-01-07 Thread Stefan Behnel
Robert Bradshaw schrieb am 07.01.2018 um 09:48: > On Sat, Jan 6, 2018 at 10:57 PM, Dan Stromberg wrote: >> I'm getting a weird segfault from a tiny function (SSCCE) using cython >> with python 2.7. I'm seeing something similar with cython and python >> 3.5, though I did not create an SSCCE for 3.5

Re: [Cython] Segfault with large cdef'd list

2018-01-07 Thread Robert Bradshaw
Cython itself doesn't impose any limits, but it does inherit whatever limit exists in the C complier and runtime. The variance may be due to whatever else happens to be placed on the stack. On Sat, Jan 6, 2018 at 10:57 PM, Dan Stromberg wrote: > I'm getting a weird segfault from a tiny function (