diff options
author | Alan McIntyre <alan.mcintyre@local> | 2008-09-18 03:33:15 +0000 |
---|---|---|
committer | Alan McIntyre <alan.mcintyre@local> | 2008-09-18 03:33:15 +0000 |
commit | 5db4b8807b0293ba5627189be66e14e7a8e07749 (patch) | |
tree | 26f6318f55f0c7fda1c200b4863a705eb032ac4d /numpy/linalg | |
parent | ccae47f074c44972b82f679ef68a848fdf308b72 (diff) | |
download | numpy-5db4b8807b0293ba5627189be66e14e7a8e07749.tar.gz |
Rewrapped __all__ to conform with PEP8.
Removed unused imports.
Diffstat (limited to 'numpy/linalg')
-rw-r--r-- | numpy/linalg/linalg.py | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/numpy/linalg/linalg.py b/numpy/linalg/linalg.py index f9af033f0..c0bb95004 100644 --- a/numpy/linalg/linalg.py +++ b/numpy/linalg/linalg.py @@ -9,16 +9,9 @@ dgeev, zgeev, dgesdd, zgesdd, dgelsd, zgelsd, dsyevd, zheevd, dgetrf, zgetrf, dpotrf, zpotrf, dgeqrf, zgeqrf, zungqr, dorgqr. """ -__all__ = ['matrix_power', 'solve', 'tensorsolve', 'tensorinv', - 'inv', 'cholesky', - 'eigvals', - 'eigvalsh', 'pinv', - 'det', 'svd', - 'eig', 'eigh','lstsq', 'norm', - 'qr', - 'cond', - 'LinAlgError' - ] +__all__ = ['matrix_power', 'solve', 'tensorsolve', 'tensorinv', 'inv', + 'cholesky', 'eigvals', 'eigvalsh', 'pinv', 'det', 'svd', + 'eig', 'eigh','lstsq', 'norm', 'qr', 'cond', 'LinAlgError'] from numpy.core import array, asarray, zeros, empty, transpose, \ intc, single, double, csingle, cdouble, inexact, complexfloating, \ @@ -27,7 +20,7 @@ from numpy.core import array, asarray, zeros, empty, transpose, \ isfinite, size from numpy.lib import triu from numpy.linalg import lapack_lite -from numpy.core.defmatrix import matrix_power, matrix +from numpy.core.defmatrix import matrix_power fortran_int = intc |