[Rpy] rpy2 + numpy + nose = bus error depending on order of imports

2011-01-29 Thread Drew Bryant
rpy2-nose.py # #import numpy # uncomment this line and it will fail with a bus error from rpy2 import robjects import numpy # importing numpy after the robjects module works fine def test(): pass # If the code above is executed via python directly, there i

Re: [Rpy] rpy2 + numpy + nose = bus error depending on order of imports

2011-01-29 Thread Laurent
On 29/01/11 16:57, Drew Bryant wrote: > rpy2-nose.py # > #import numpy # uncomment this line and it will fail with a bus error > from rpy2 import robjects > import numpy # importing numpy after the robjects module works fine > > def test(): > pass > # > > I