Chris@87: from __future__ import division, absolute_import, print_function Chris@87: Chris@87: import math Chris@87: Chris@87: from .info import __doc__ Chris@87: from numpy.version import version as __version__ Chris@87: Chris@87: from .type_check import * Chris@87: from .index_tricks import * Chris@87: from .function_base import * Chris@87: from .nanfunctions import * Chris@87: from .shape_base import * Chris@87: from .stride_tricks import * Chris@87: from .twodim_base import * Chris@87: from .ufunclike import * Chris@87: Chris@87: from . import scimath as emath Chris@87: from .polynomial import * Chris@87: #import convertcode Chris@87: from .utils import * Chris@87: from .arraysetops import * Chris@87: from .npyio import * Chris@87: from .financial import * Chris@87: from .arrayterator import * Chris@87: from .arraypad import * Chris@87: from ._version import * Chris@87: Chris@87: __all__ = ['emath', 'math'] Chris@87: __all__ += type_check.__all__ Chris@87: __all__ += index_tricks.__all__ Chris@87: __all__ += function_base.__all__ Chris@87: __all__ += shape_base.__all__ Chris@87: __all__ += stride_tricks.__all__ Chris@87: __all__ += twodim_base.__all__ Chris@87: __all__ += ufunclike.__all__ Chris@87: __all__ += arraypad.__all__ Chris@87: __all__ += polynomial.__all__ Chris@87: __all__ += utils.__all__ Chris@87: __all__ += arraysetops.__all__ Chris@87: __all__ += npyio.__all__ Chris@87: __all__ += financial.__all__ Chris@87: __all__ += nanfunctions.__all__ Chris@87: Chris@87: from numpy.testing import Tester Chris@87: test = Tester().test Chris@87: bench = Tester().bench