blob: 08be8135b98650e5975de3bd5a33d84cc06a7e0e (
plain)
1
2
3
4
5
6
7
8
9
|
from __future__ import division
from numpy.oldnumeric import *
from numpy.lib.user_array import container as UserArray
import numpy.oldnumeric as nold
__all__ = nold.__all__[:]
__all__ += ['UserArray']
del nold
|