On Tue, Sep 18, 2007 at 10:33:29AM -0000, mark wrote: > Does that make sense? I know, I should probably use a.min() rather > than min(a), but why does min() not get imported on an import * ?
Because min isn't in numpy.__all__. Python imports only identifiers listed in __all__ if __all__ is present. Gaƫl _______________________________________________ Numpy-discussion mailing list [email protected] http://projects.scipy.org/mailman/listinfo/numpy-discussion
