~jtaylor/ubuntu/precise/python-numpy/multiarch-fix-818867

« back to all changes in this revision

Viewing changes to numpy/core/__init__.py

  • Committer: Bazaar Package Importer
  • Author(s): Sandro Tosi
  • Date: 2010-10-07 10:19:13 UTC
  • mfrom: (7.1.5 sid)
  • Revision ID: james.westby@ubuntu.com-20101007101913-8b1kmt8ho4upcl9s
Tags: 1:1.4.1-5
* debian/patches/10_use_local_python.org_object.inv_sphinx.diff
  - fixed small typo in description
* debian/patches/changeset_r8364.diff
  - fix memory corruption (double free); thanks to Joseph Barillari for the
    report and to Michael Gilbert for pushing resolution; Closes: #581058

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
import _sort
11
11
from numeric import *
12
12
from fromnumeric import *
13
 
from defmatrix import *
14
13
import defchararray as char
15
14
import records as rec
16
15
from records import *
17
16
from memmap import *
18
 
from defchararray import *
 
17
from defchararray import chararray
19
18
import scalarmath
 
19
from function_base import *
 
20
from machar import *
 
21
from getlimits import *
 
22
from shape_base import *
20
23
del nt
21
24
 
22
25
from fromnumeric import amax as max, amin as min, \
26
29
__all__ = ['char','rec','memmap']
27
30
__all__ += numeric.__all__
28
31
__all__ += fromnumeric.__all__
29
 
__all__ += defmatrix.__all__
30
32
__all__ += rec.__all__
31
 
__all__ += char.__all__
 
33
__all__ += ['chararray']
 
34
__all__ += function_base.__all__
 
35
__all__ += machar.__all__
 
36
__all__ += getlimits.__all__
 
37
__all__ += shape_base.__all__
32
38
 
33
39
 
34
40
from numpy.testing import Tester