Re: [Cython] Cython 0.15 release candidate

2011-07-26 Thread Arfrever Frehtes Taifersar Arahesis
2011-07-25 08:17:24 Stefan Behnel napisał(a): > Arfrever Frehtes Taifersar Arahesis, 25.07.2011 08:08: > > There are 4 NumPy-related test errors with Python 3.1 and 3.2. > > I assume that's NumPy 1.5? Could you provide the C compiler output from the > test logs? > > This is on 64bit Linux, right

Re: [Cython] Cython 0.15 release candidate

2011-07-26 Thread mark florisson
On 25 July 2011 08:08, Arfrever Frehtes Taifersar Arahesis wrote: > There are 4 NumPy-related test errors with Python 3.1 and 3.2. > Output with Python 3.2: > > == > ERROR: runTest (__main__.CythonRunTestCase) > compiling (cpp) an

Re: [Cython] Utility Codes and templates

2011-07-26 Thread mark florisson
On 26 July 2011 11:26, Stefan Behnel wrote: > mark florisson, 26.07.2011 10:57: >> >> On 26 July 2011 08:46, Robert Bradshaw >>  wrote: >>> >>> On Mon, Jul 25, 2011 at 11:39 PM, Stefan Behnel >>>  wrote: Robert Bradshaw, 26.07.2011 06:29: > > On Mon, Jul 25, 2011 at 3:07 AM, mark

Re: [Cython] Utility Codes and templates

2011-07-26 Thread Stefan Behnel
mark florisson, 26.07.2011 10:57: On 26 July 2011 08:46, Robert Bradshaw wrote: On Mon, Jul 25, 2011 at 11:39 PM, Stefan Behnel wrote: Robert Bradshaw, 26.07.2011 06:29: On Mon, Jul 25, 2011 at 3:07 AM, mark florisson It's now 'MyUtility' and 'MyUtility.proto'. If there's no objection to

Re: [Cython] Utility Codes and templates

2011-07-26 Thread mark florisson
On 26 July 2011 08:50, Stefan Behnel wrote: > Robert Bradshaw, 26.07.2011 07:00: >> >> On Mon, Jul 25, 2011 at 9:48 PM, Vitja Makarov wrote: >>> >>> I think that would seriously help with  moving shared C-code into >>> cython library (.h and .so). >>> >>> Some things like generator class implement

Re: [Cython] Utility Codes and templates

2011-07-26 Thread mark florisson
On 26 July 2011 08:46, Robert Bradshaw wrote: > On Mon, Jul 25, 2011 at 11:39 PM, Stefan Behnel wrote: >> Robert Bradshaw, 26.07.2011 06:29: >>> >>> On Mon, Jul 25, 2011 at 3:07 AM, mark florisson It's now 'MyUtility' and 'MyUtility.proto'. If there's no objection to the ini-style

Re: [Cython] Transformation of pxds

2011-07-26 Thread Stefan Behnel
Romain Guillebert, 26.07.2011 04:10: I can now compile pxd files, but I have encountered something rather strange : AnalyseExpressionsTransform turns : cimport foo def test(): foo.printf() into : cimport foo def test(): printf() This makes sense from the POV of C, which has a fla