mailr5566 - /1.3/prompt/results.py


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

Header


Content

Posted by edward on April 10, 2008 - 17:20:
Author: bugman
Date: Thu Apr 10 17:20:22 2008
New Revision: 5566

URL: http://svn.gna.org/viewcvs/relax?rev=5566&view=rev
Log:
Converted the results.write() force arg to a bool.


Modified:
    1.3/prompt/results.py

Modified: 1.3/prompt/results.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/prompt/results.py?rev=5566&r1=5565&r2=5566&view=diff
==============================================================================
--- 1.3/prompt/results.py (original)
+++ 1.3/prompt/results.py Thu Apr 10 17:20:22 2008
@@ -26,7 +26,7 @@
 # relax module imports.
 import help
 from generic_fns import results
-from relax_errors import RelaxBinError, RelaxIntError, RelaxNoneStrError, 
RelaxStrError
+from relax_errors import RelaxBoolError, RelaxIntError, RelaxNoneStrError, 
RelaxStrError
 
 
 class Results:
@@ -107,7 +107,7 @@
         results.read(file=file, directory=dir, format=format)
 
 
-    def write(self, file='results', dir='dir', force=0, format='columnar', 
compress_type=1):
+    def write(self, file='results', dir='dir', force=False, 
format='columnar', compress_type=1):
         """Function for writing results to a file.
 
         Keyword Arguments
@@ -117,7 +117,7 @@
 
         dir:  The directory name.
 
-        force:  A flag which, if set to 1, will cause the results file to be 
overwritten.
+        force:  A flag which if True will cause the results file to be 
overwritten.
 
         format:  The format of the output.
 
@@ -160,8 +160,8 @@
             raise RelaxNoneStrError, ('directory name', dir)
 
         # 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)
 
         # Format.
         if type(format) != str:




Related Messages


Powered by MHonArc, Updated Thu Apr 10 17:40:12 2008