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
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