From 5db4b8807b0293ba5627189be66e14e7a8e07749 Mon Sep 17 00:00:00 2001 From: Alan McIntyre Date: Thu, 18 Sep 2008 03:33:15 +0000 Subject: Rewrapped __all__ to conform with PEP8. Removed unused imports. --- numpy/linalg/linalg.py | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) (limited to 'numpy/linalg') 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 -- cgit v1.2.1