mailr10443 - /1.3/generic_fns/state.py


Others Months | Index by Date | Thread Index
>>   [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Header


Content

Posted by edward on January 27, 2010 - 17:22:
Author: bugman
Date: Wed Jan 27 17:22:00 2010
New Revision: 10443

URL: http://svn.gna.org/viewcvs/relax?rev=10443&view=rev
Log:
The generic_fns.state.save_state() function can now have the verbosity level 
changed.


Modified:
    1.3/generic_fns/state.py

Modified: 1.3/generic_fns/state.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/generic_fns/state.py?rev=10443&r1=10442&r2=10443&view=diff
==============================================================================
--- 1.3/generic_fns/state.py (original)
+++ 1.3/generic_fns/state.py Wed Jan 27 17:22:00 2010
@@ -136,13 +136,15 @@
         raise RelaxError("The saved state " + repr(state) + " is not 
compatible with this version of relax.")
 
 
-def save_state(state=None, dir=None, compress_type=1, force=False, 
pickle=False):
+def save_state(state=None, dir=None, compress_type=1, verbosity=1, 
force=False, pickle=False):
     """Function for saving the program state.
 
     @keyword state:         The saved state file.
     @type state:            str
     @keyword dir:           The path of the state file.
     @type dir:              str
+    @param verbosity:       The verbosity level.
+    @type verbosity:        int
     @keyword force:         Boolean argument which if True causes the file 
to be overwritten if it
                             already exists.
     @type force:            bool
@@ -152,7 +154,7 @@
     """
 
     # Open the file for writing.
-    file = open_write_file(file_name=state, dir=dir, force=force, 
compress_type=compress_type)
+    file = open_write_file(file_name=state, dir=dir, verbosity=verbosity, 
force=force, compress_type=compress_type)
 
     # Pickle the data class and write it to file
     if pickle:




Related Messages


Powered by MHonArc, Updated Wed Jan 27 17:40:02 2010