blob: b77d85a962afd0a3d21e693b46908721e0f086bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
from info import __doc__
from numpy.version import version as __version__
from type_check import *
from index_tricks import *
from function_base import *
from shape_base import *
from twodim_base import *
from ufunclike import *
import scimath as math
from polynomial import *
from machar import *
from getlimits import *
import convertcode
del nt
from utils import *
__all__ = filter(lambda s:not s.startswith('_'),dir())
from numpy.testing import ScipyTest
test = ScipyTest().test
|