Re: [pypy-dev] Separate building of the C source files

2011-09-16 Thread Armin Rigo
Hi Elad, On Wed, Sep 14, 2011 at 10:08 PM, Elad Lahav e2la...@gmail.com wrote: Thanks, Armin, but that's the first place I looked. There is no makefile there. Doesn't make much sense to me. A Makefile (not a makefile) should be created. If it wasn't, then maybe it crashed during writing the

Re: [pypy-dev] Detecting numpy vs micronumpy

2011-09-16 Thread Peter Cock
On Thu, Sep 15, 2011 at 11:04 PM, Alex Gaynor alex.gay...@gmail.com wrote: The problem I am running into is that import numpy appears to work under PyPy 1.6 (you get micronumpy) but later things like numpy.get_include() don't work (AttributeError). Should I just treat that exception itself

Re: [pypy-dev] Detecting numpy vs micronumpy

2011-09-16 Thread Armin Rigo
Hi, On Fri, Sep 16, 2011 at 11:48 AM, Peter Cock p.j.a.c...@googlemail.com wrote: Thanks, I'll use that. Its a shame that wasn't in Python 2.5 though, my copy of Jython doesn't support it either. The older and more robust way to check this is: __pypy__ in sys.builtin_module_names Armin