Re: [web2py] import numpy and scipy slows function return

2013-01-02 Thread lucas
ok, so you got me thinking about import in the way of models, modules, and controllers. where does packages fit into that scheme? anyway, reading sort of confused me more. what is the defined functionality of a model, module, controller, and package in the python scheme of things? do you ha

Re: [web2py] import numpy and scipy slows function return

2012-12-31 Thread Bruno Rocha
Hi, give a bit more information. Are you importing in models, modules or controllers? Are you importing in the way import numpy import scipy or from numpy import X, Y , X from scipy import X, Y, Z or from numpy import * from scipy import * ? --