Re: [Cython] Constant pointers not working

2013-04-09 Thread Robert Bradshaw
On Mon, Apr 8, 2013 at 4:56 AM, Stefan Behnel wrote: > Volker Mische, 08.04.2013 13:43: >> On 04/02/2013 07:20 PM, Volker Mische wrote: >>> On 03/22/2013 02:47 PM, Volker Mische wrote: Hi all, I was excited to see that 'const' is finally supported, but constant pointers are not

Re: [Cython] Constant pointers not working

2013-04-08 Thread Stefan Behnel
Volker Mische, 08.04.2013 13:43: > On 04/02/2013 07:20 PM, Volker Mische wrote: >> On 03/22/2013 02:47 PM, Volker Mische wrote: >>> Hi all, >>> >>> I was excited to see that 'const' is finally supported, but constant >>> pointers are not. Here's an example with the corresponding error: >>> >>> Erro

Re: [Cython] Constant pointers not working

2013-04-08 Thread Volker Mische
On 04/02/2013 07:20 PM, Volker Mische wrote: > On 03/22/2013 02:47 PM, Volker Mische wrote: >> Hi all, >> >> I was excited to see that 'const' is finally supported, but constant >> pointers are not. Here's an example with the corresponding error: >> >> Error compiling Cython file: >> --

Re: [Cython] Constant pointers not working

2013-04-02 Thread Robert Bradshaw
Looks good to me. On Tue, Apr 2, 2013 at 10:20 AM, Volker Mische wrote: > On 03/22/2013 02:47 PM, Volker Mische wrote: >> Hi all, >> >> I was excited to see that 'const' is finally supported, but constant >> pointers are not. Here's an example with the corresponding error: >> >> Error compiling C

Re: [Cython] Constant pointers not working

2013-04-02 Thread Volker Mische
On 03/22/2013 02:47 PM, Volker Mische wrote: > Hi all, > > I was excited to see that 'const' is finally supported, but constant > pointers are not. Here's an example with the corresponding error: > > Error compiling Cython file: > > ...

[Cython] Constant pointers not working

2013-03-22 Thread Volker Mische
Hi all, I was excited to see that 'const' is finally supported, but constant pointers are not. Here's an example with the corresponding error: Error compiling Cython file: ... cdef extern int foo(const int *const bar)