From f544e777b5124da236b2fb2afefcf310f025042f Mon Sep 17 00:00:00 2001 From: Travis Oliphant Date: Tue, 2 May 2006 23:19:56 +0000 Subject: Add math module to numpy namespace so numpy.math works same as Numeric.math. Change numpy.math to numpy.nmath --- numpy/lib/__init__.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'numpy/lib/__init__.py') diff --git a/numpy/lib/__init__.py b/numpy/lib/__init__.py index f962b13b7..e5778d230 100644 --- a/numpy/lib/__init__.py +++ b/numpy/lib/__init__.py @@ -9,15 +9,16 @@ from shape_base import * from twodim_base import * from ufunclike import * -import scimath as math +import scimath as nmath from polynomial import * from machar import * from getlimits import * #import convertcode from utils import * from arraysetops import * +import math -__all__ = ['math'] +__all__ = ['nmath','math'] __all__ += type_check.__all__ __all__ += index_tricks.__all__ __all__ += function_base.__all__ -- cgit v1.2.1