mailr6688 - /1.3/prompt/value.py


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

Header


Content

Posted by sebastien . morin . 1 on July 04, 2008 - 19:36:
Author: semor
Date: Fri Jul  4 19:27:43 2008
New Revision: 6688

URL: http://svn.gna.org/viewcvs/relax?rev=6688&view=rev
Log:
Converted more force flags to bools.


Modified:
    1.3/prompt/value.py

Modified: 1.3/prompt/value.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/prompt/value.py?rev=6688&r1=6687&r2=6688&view=diff
==============================================================================
--- 1.3/prompt/value.py (original)
+++ 1.3/prompt/value.py Fri Jul  4 19:27:43 2008
@@ -423,7 +423,7 @@
         value.set(val=val, param=param, spin_id=spin_id)
 
 
-    def write(self, run=None, param=None, file=None, dir=None, force=0):
+    def write(self, run=None, param=None, file=None, dir=None, force=Flase):
         """Function for writing residue specific data values to a file.
 
         Keyword Arguments
@@ -437,7 +437,7 @@
 
         dir:  The directory name.
 
-        force:  A flag which, if set to 1, will cause the file to be 
overwritten.
+        force:  A flag which, if set to True, will cause the file to be 
overwritten.
 
 
         Description
@@ -462,7 +462,7 @@
         relax> value.write('noe', 'noe', 'noe.out')
         relax> value.write('noe', param='noe', file='noe.out')
         relax> value.write(run='noe', param='noe', file='noe.out')
-        relax> value.write(run='noe', param='noe', file='noe.out', force=1)
+        relax> value.write(run='noe', param='noe', file='noe.out', 
force=True)
         """
 
         # Function intro text.
@@ -492,8 +492,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)
 
         # Execute the functional code.
         self.__relax__.generic.value.write(run=run, param=param, file=file, 
dir=dir, force=force)




Related Messages


Powered by MHonArc, Updated Fri Jul 04 19:40:09 2008