Re: [Cython] [cython-users] GSoC 2012

2012-03-21 Thread Robert Bradshaw
On Wed, Mar 21, 2012 at 2:11 PM, Dag Sverre Seljebotn wrote: > On 03/21/2012 01:56 PM, Robert Bradshaw wrote: >> >> On Sat, Mar 10, 2012 at 10:44 PM, mark florisson >>  wrote: >>> >>> On 8 March 2012 14:27, Stefan Behnel  wrote: Hi, I noticed that people start rushing for the

Re: [Cython] [cython-users] GSoC 2012

2012-03-21 Thread Dag Sverre Seljebotn
On 03/21/2012 01:56 PM, Robert Bradshaw wrote: On Sat, Mar 10, 2012 at 10:44 PM, mark florisson wrote: On 8 March 2012 14:27, Stefan Behnel wrote: Hi, I noticed that people start rushing for the next season on Python's GSoC mailing lists. Do we have any interested developers here, or genera

Re: [Cython] [cython-users] GSoC 2012

2012-03-21 Thread Robert Bradshaw
On Sat, Mar 10, 2012 at 10:44 PM, mark florisson wrote: > On 8 March 2012 14:27, Stefan Behnel wrote: >> Hi, >> >> I noticed that people start rushing for the next season on Python's GSoC >> mailing lists. Do we have any interested developers here, or general ideas >> about suitable topics? I wou

Re: [Cython] some pull requests for 0.16?

2012-03-21 Thread Robert Bradshaw
On Wed, Mar 21, 2012 at 6:47 AM, mark florisson wrote: > On 20 March 2012 18:51, Stefan Behnel wrote: >> mark florisson, 20.03.2012 17:40: >>> On 18 March 2012 11:58, Stefan Behnel wrote: I put up two new pull requests on github: Implementation of PEP 380 (yield from): https:/

Re: [Cython] Jenkins down

2012-03-21 Thread Robert Bradshaw
On Wed, Mar 21, 2012 at 8:58 AM, Stefan Behnel wrote: > mark florisson, 21.03.2012 15:12: >> On 21 March 2012 15:07, mark florisson wrote: >>> On 21 March 2012 14:58, Stefan Behnel wrote: it seems like the sage.math server is broken again, at least it's lacking mounts when I try to log i

Re: [Cython] Exception instantiation

2012-03-21 Thread Robert Bradshaw
On Wed, Mar 21, 2012 at 1:03 AM, Stefan Behnel wrote: > Hi, > > I was made aware of a difference between the ways Cython and CPython raise > exceptions. In CPython, the exception is always instantiated immediately, > even if you raise a plain type, i.e. > >    raise TypeError > > will actually rai

Re: [Cython] Jenkins down

2012-03-21 Thread mark florisson
On 21 March 2012 15:58, Stefan Behnel wrote: > mark florisson, 21.03.2012 15:12: >> On 21 March 2012 15:07, mark florisson wrote: >>> On 21 March 2012 14:58, Stefan Behnel wrote: it seems like the sage.math server is broken again, at least it's lacking mounts when I try to log in. I'll r

Re: [Cython] Jenkins down

2012-03-21 Thread William Stein
On Wed, Mar 21, 2012 at 11:58 AM, Stefan Behnel wrote: > mark florisson, 21.03.2012 15:12: >> On 21 March 2012 15:07, mark florisson wrote: >>> On 21 March 2012 14:58, Stefan Behnel wrote: it seems like the sage.math server is broken again, at least it's lacking mounts when I try to log

Re: [Cython] Jenkins down

2012-03-21 Thread Stefan Behnel
mark florisson, 21.03.2012 15:12: > On 21 March 2012 15:07, mark florisson wrote: >> On 21 March 2012 14:58, Stefan Behnel wrote: >>> it seems like the sage.math server is broken again, at least it's lacking >>> mounts when I try to log in. I'll restart Jenkins as soon as it's back >>> working. >>

Re: [Cython] Jenkins down

2012-03-21 Thread mark florisson
On 21 March 2012 15:07, mark florisson wrote: > On 21 March 2012 14:58, Stefan Behnel wrote: >> Hi, >> >> it seems like the sage.math server is broken again, at least it's lacking >> mounts when I try to log in. I'll restart Jenkins as soon as it's back >> working. >> >> Stefan >> __

Re: [Cython] Jenkins down

2012-03-21 Thread mark florisson
On 21 March 2012 14:58, Stefan Behnel wrote: > Hi, > > it seems like the sage.math server is broken again, at least it's lacking > mounts when I try to log in. I'll restart Jenkins as soon as it's back > working. > > Stefan > ___ > cython-devel mailing

[Cython] Jenkins down

2012-03-21 Thread Stefan Behnel
Hi, it seems like the sage.math server is broken again, at least it's lacking mounts when I try to log in. I'll restart Jenkins as soon as it's back working. Stefan ___ cython-devel mailing list cython-devel@python.org http://mail.python.org/mailman/lis

Re: [Cython] some pull requests for 0.16?

2012-03-21 Thread mark florisson
On 20 March 2012 18:51, Stefan Behnel wrote: > mark florisson, 20.03.2012 17:40: >> On 18 March 2012 11:58, Stefan Behnel wrote: >>> I put up two new pull requests on github: >>> >>> Implementation of PEP 380 (yield from): >>> https://github.com/cython/cython/pull/96 >>> >>> Rewrite of dict iterat

Re: [Cython] OS X 10.7 Lion: GCC __builtin_expect unrecognized inside OpenMP blocks

2012-03-21 Thread mark florisson
Could you try the new fix from my branch? If it doesn't do the trick then I will need to know whether the macros are passing the preprocessor. On 15 March 2012 13:21, Lisandro Dalcin wrote: > On 14 March 2012 08:58, mark florisson wrote: >> On 9 March 2012 14:22, Lisandro Dalcin wrote: >> >> Co

Re: [Cython] Exception instantiation

2012-03-21 Thread Lisandro Dalcin
On 21 March 2012 11:03, Stefan Behnel wrote: > Hi, > I think this should change. We may consider leaving it as it is for known > exception types that are created without arguments, +1 > but otherwise, and > especially for user provided exceptions, we should take the safer route of > always insta

[Cython] Exception instantiation

2012-03-21 Thread Stefan Behnel
Hi, I was made aware of a difference between the ways Cython and CPython raise exceptions. In CPython, the exception is always instantiated immediately, even if you raise a plain type, i.e. raise TypeError will actually raise a TypeError() instance. In Cython, the exception is only stored, n

Re: [Cython] OS X 10.7 Lion: GCC __builtin_expect unrecognized inside OpenMP blocks

2012-03-21 Thread Stefan Behnel
mark florisson, 16.03.2012 04:00: > $ cpp > #if defined(__APPLE__) || defined(__OSX__) > FOO > #endif > ^D Ah, hackers. Isn't that just lovely? Stefan ___ cython-devel mailing list cython-devel@python.org http://mail.python.org/mailman/listinfo/cyth