mailr4545 - /1.3/prompt/state.py


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

Header


Content

Posted by edward on January 09, 2008 - 14:28:
Author: bugman
Date: Wed Jan  9 14:28:24 2008
New Revision: 4545

URL: http://svn.gna.org/viewcvs/relax?rev=4545&view=rev
Log:
Changed the 'force' arg of the state.save() user function too a boolean.


Modified:
    1.3/prompt/state.py

Modified: 1.3/prompt/state.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/prompt/state.py?rev=4545&r1=4544&r2=4545&view=diff
==============================================================================
--- 1.3/prompt/state.py (original)
+++ 1.3/prompt/state.py Wed Jan  9 14:28:24 2008
@@ -100,7 +100,7 @@
         load_state(state=state, dir_name=dir_name)
 
 
-    def save(self, state=None, dir_name=None, force=0, compress_type=1):
+    def save(self, state=None, dir_name=None, force=False, compress_type=1):
         """Function for saving the program state.
 
         Keyword Arguments
@@ -111,7 +111,7 @@
 
         dir_name:  The name of the directory in which to place the file.
 
-        force:  A flag which if set to 1 will cause the file to be 
overwritten.
+        force:  A boolean flag which if set to True will cause the file to 
be overwritten.
 
 
         Description
@@ -148,8 +148,8 @@
         If the file 'save' already exists, the following commands will save 
the current program
         state by overwriting the file.
 
-        relax> state.save('save', 1)
-        relax> state.save(state='save', force=1)
+        relax> state.save('save', True)
+        relax> state.save(state='save', force=True)
         """
 
         # Function intro text.
@@ -170,8 +170,8 @@
             raise RelaxNoneStrError, ('directory', dir_name)
 
         # The force flag.
-        if type(force) != int or (force != 0 and force != 1):
-            raise RelaxBinError, ('force flag', force)
+        if type(force) != bool:
+            raise RelaxBoolError, ('force flag', force)
 
         # Compression type.
         if type(compress_type) != int:




Related Messages


Powered by MHonArc, Updated Wed Jan 09 14:40:12 2008