[Scipy-svn] r6650 - trunk/scipy/io

scipy-svn at scipy.org scipy-svn at scipy.org
Wed Aug 18 17:23:07 EDT 2010


Author: matthew.brett at gmail.com
Date: 2010-08-18 16:23:07 -0500 (Wed, 18 Aug 2010)
New Revision: 6650

Modified:
   trunk/scipy/io/idlsave.py
Log:
RF - turning off default verbose as suggested by Pauli

Modified: trunk/scipy/io/idlsave.py
===================================================================
--- trunk/scipy/io/idlsave.py	2010-08-18 21:23:03 UTC (rev 6649)
+++ trunk/scipy/io/idlsave.py	2010-08-18 21:23:07 UTC (rev 6650)
@@ -578,7 +578,7 @@
 
 
 def read(file_name, idict=None, python_dict=False,
-         uncompressed_file_name=None, verbose=True):
+         uncompressed_file_name=None, verbose=False):
     '''
     Read an IDL .sav file
 
@@ -592,7 +592,7 @@
         By default, the object return is not a Python dictionary, but a
         case-insensitive dictionary with item, attribute, and call access
         to variables. To get a standard Python dictionary, set this option
-        to True. If `idict` is specified, `attribute_access` is ignored.
+        to True.
     uncompressed_file_name : str, optional
         This option only has an effect for .sav files written with the
         /compress option. If a file name is specified, compressed .sav




More information about the Scipy-svn mailing list