~ubuntu-branches/ubuntu/feisty/python-numpy/feisty

« back to all changes in this revision

Viewing changes to numpy/core/__init__.py

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2006-07-12 10:00:24 UTC
  • Revision ID: james.westby@ubuntu.com-20060712100024-5lw9q2yczlisqcrt
Tags: upstream-0.9.8
ImportĀ upstreamĀ versionĀ 0.9.8

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
from info import __doc__
 
3
from numpy.version import version as __version__
 
4
 
 
5
import multiarray
 
6
import umath
 
7
import numerictypes as nt
 
8
multiarray.set_typeDict(nt.typeDict)
 
9
import _sort
 
10
from numeric import *
 
11
from oldnumeric import *
 
12
from defmatrix import *
 
13
import ma
 
14
import defchararray as char
 
15
import records as rec
 
16
from records import *
 
17
from memmap import *
 
18
from defchararray import *
 
19
import scalarmath
 
20
del scalarmath
 
21
del nt
 
22
 
 
23
__all__ = ['char','rec','memmap','ma']
 
24
__all__ += numeric.__all__
 
25
__all__ += oldnumeric.__all__
 
26
__all__ += defmatrix.__all__
 
27
__all__ += rec.__all__
 
28
__all__ += char.__all__
 
29
 
 
30
def test(level=1, verbosity=1):
 
31
    from numpy.testing import NumpyTest
 
32
    return NumpyTest().test(level, verbosity)