mailr9503 - /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 September 10, 2009 - 19:26:
Author: bugman
Date: Thu Sep 10 19:26:22 2009
New Revision: 9503

URL: http://svn.gna.org/viewcvs/relax?rev=9503&view=rev
Log:
Shifted the results.write() force arg to the end.

Bool args should be last!


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=9503&r1=9502&r2=9503&view=diff
==============================================================================
--- 1.3/prompt/results.py (original)
+++ 1.3/prompt/results.py Thu Sep 10 19:26:22 2009
@@ -91,7 +91,7 @@
         results.read(file=file, directory=dir)
 
 
-    def write(self, file='results', dir='pipe_name', force=False, 
compress_type=1):
+    def write(self, file='results', dir='pipe_name', compress_type=1, 
force=False):
         """Function for writing results to a file.
 
         Keyword Arguments
@@ -102,9 +102,9 @@
 
         dir:  The directory name.
 
+        compress_type:  The type of compression to use when creating the 
file.
+
         force:  A flag which if True will cause the results file to be 
overwritten.
-
-        compress_type:  The type of compression to use when creating the 
file.
 
 
         Description
@@ -131,15 +131,15 @@
             text = sys.ps3 + "results.write("
             text = text + "file=" + repr(file)
             text = text + ", dir=" + repr(dir)
-            text = text + ", force=" + repr(force)
-            text = text + ", compress_type=" + repr(compress_type) + ")"
+            text = text + ", compress_type=" + repr(compress_type)
+            text = text + ", force=" + repr(force) + ")"
             print(text)
 
         # The argument checks.
         check.is_str_or_inst(file, 'file name')
         check.is_str(dir, 'directory name', can_be_none=True)
+        check.is_int(compress_type, 'compression type')
         check.is_bool(force, 'force flag')
-        check.is_int(compress_type, 'compression type')
 
         # Execute the functional code.
         results.write(file=file, directory=dir, force=force, 
compress_type=compress_type)




Related Messages


Powered by MHonArc, Updated Thu Sep 10 19:40:03 2009