[Scipy-svn] r2310 - trunk/Lib

scipy-svn at scipy.org scipy-svn at scipy.org
Tue Nov 7 19:27:40 EST 2006


Author: rkern
Date: 2006-11-07 18:20:45 -0600 (Tue, 07 Nov 2006)
New Revision: 2310

Modified:
   trunk/Lib/__init__.py
Log:
Delete the numpy linalg from the __init__.py so that scipy.linalg can be imported.

Modified: trunk/Lib/__init__.py
===================================================================
--- trunk/Lib/__init__.py	2006-11-07 22:04:53 UTC (rev 2309)
+++ trunk/Lib/__init__.py	2006-11-08 00:20:45 UTC (rev 2310)
@@ -47,6 +47,9 @@
   numpy name space
 """
 del _num
+# Remove the linalg imported from numpy so that the scipy.linalg package can be
+# imported.
+del linalg
 
 from __config__ import show as show_config
 from version import version as __version__




More information about the Scipy-svn mailing list