Package: python-scipy Version: 0.7.2+dfsg1-1+b1 Severity: normal Tags: patch
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA512 Hi, After I upgraded the python-scipy package, I found that I cannot call scipy.sparse.linalg.eigen_symmetric from my script. This may due to the typo in scipy/sparse/linalg/arpack/arpack.py. (I could not comfirm if this is the right patch, sorry.) Please look at the attached patch. Best regards, - -- Ryo IGARASHI, Ph.D. [email protected] - -- System Information: Debian Release: wheezy/sid APT prefers stable-updates APT policy: (500, 'stable-updates'), (500, 'proposed-updates'), (500, 'unstable'), (500, 'stable'), (1, 'experimental') Architecture: amd64 (x86_64) Kernel: Linux 2.6.38-2-amd64 (SMP w/1 CPU core) Locale: LANG=ja_JP.UTF-8, LC_CTYPE=ja_JP.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages python-scipy depends on: ii libamd2.2.0 1:3.4.0-2 approximate minimum degree orderin ii libatlas3gf-base [liblapack. 3.8.3-30 Automatically Tuned Linear Algebra ii libblas3gf [libblas.so.3gf] 1.2-8 Basic Linear Algebra Reference imp ii libc6 2.11.2-13 Embedded GNU C Library: Shared lib ii libgcc1 1:4.6.0-2 GCC support library ii libgfortran3 4.6.0-2 Runtime library for GNU Fortran ap ii liblapack3gf [liblapack.so.3 3.3.0-4 library of linear algebra routines ii libstdc++6 4.6.0-2 The GNU Standard C++ Library v3 ii libumfpack5.4.0 1:3.4.0-2 sparse LU factorization library ii python 2.6.6-12 interactive high-level object-orie ii python-central 0.6.16+nmu1 register and build utility for Pyt ii python-numpy 1:1.5.1-2 Numerical Python adds a fast array Versions of packages python-scipy recommends: ii g++ [c++-compiler] 4:4.5.2-5 The GNU C++ compiler ii g++-4.5 [c++-compiler] 4.5.2-8 The GNU C++ compiler Versions of packages python-scipy suggests: ii python-profiler 2.6.6-1 deterministic profiling of any Pyt - -- no debconf information -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.11 (GNU/Linux) iQIcBAEBCgAGBQJNnBLaAAoJEOx5ooBqGSMZrpUP/18LxJMOyj+cXDQcgvPDcprn sJ6lD+zC9v0rwPat992ayq/ZKvZ5yWTB7bl54rNUZmgo6GGSCFPPNpXdI2n+3foK rMBkmb+8ucdnoCBi9he1JGJmhJt+kfzoS8jeZ6lRpTl75lTHuM8c+O8OSBjsPVUc fpSpmpYE9WgKyTUwuGBT63eTD/xEfZQjuY381CpoU9GOjxqysg2cx+VwKjcycYfi vQmF75TwqZ0kpCDNUR48BCREcGiALHeDxuzvfbOQIc2TfszgRbZtP6Mzb50QlC1i xPLXbAX0HkD7TTJj9VzdfY49A6ZIuSjfUbKG2jbSCDjvTbkehRMvccP/HURFHWai qZw3AYGcGSRFLkqSPtzZLJPwHwKQ6hYfU7No0oWf1ELYJPnHMxLvr4XowhZD1lpf B8d5zPgwO2NdaS4e7fC0ABkfDNqICTZCIJq8FMuTgj4uf6mSS7BkHW9TAsCsMvcc w65dZ5v+q6oVYZBAYGN5UdlA0i+DEdKquQ1tBEGJUZ7U9C4psPWWQoJpoaDQS70x JEMLLxukXRu3WgeMzu3tAFAatQqnsFlp1cbekDGVhhtChmvLO8yD4iG54WEU1PoV kN7fiQkLTh5edeWwlLZ+BOFcSx+cP4rIZR+Sjhu3bu2CKUV5Uh2nbgqd9LWqkfzz hVy2T2ipKMPVZTFhx41N =28+v -----END PGP SIGNATURE-----
--- scipy/sparse/linalg/eigen/arpack/arpack.py.old 2011-04-06 15:27:34.000000000 +0900 +++ scipy/sparse/linalg/eigen/arpack/arpack.py 2011-04-06 15:27:48.000000000 +0900 @@ -39,7 +39,7 @@ __docformat__ = "restructuredtext en" -__all___=['eigen','eigen_symmetric'] +__all__ =['eigen','eigen_symmetric'] import warnings

