mailr3340 - in /1.3: float.py test_suite/system_tests/model_free.py


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

Header


Content

Posted by edward on July 12, 2007 - 11:35:
Author: bugman
Date: Thu Jul 12 11:34:48 2007
New Revision: 3340

URL: http://svn.gna.org/viewcvs/relax?rev=3340&view=rev
Log:
Application of Sebastien Morin's patch 'patch__indentation__r3339'.

See the post at https://mail.gna.org/public/relax-devel/2007-07/msg00030.html 
for details.

This patch fixes the indentation issues - violations of the 4 spaces for a 
tab - within the 1.3
line.


Modified:
    1.3/float.py
    1.3/test_suite/system_tests/model_free.py

Modified: 1.3/float.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/float.py?rev=3340&r1=3339&r2=3340&view=diff
==============================================================================
--- 1.3/float.py (original)
+++ 1.3/float.py Thu Jul 12 11:34:48 2007
@@ -152,19 +152,19 @@
 
     # check finite
     if isFinite(float):
-         # check and store is positive
-         positive = isPositive(float)
-         if isZero(float):
+        # check and store is positive
+        positive = isPositive(float)
+        if isZero(float):
             if positive:
                 result = CLASS_POS_ZERO
             else:
                 result = CLASS_NEG_ZERO
-         elif isDenormalised(float):
+        elif isDenormalised(float):
             if positive:
                 result = CLASS_POS_DENORMAL
             else:
                 result = CLASS_NEG_DENORMAL
-         else:
+        else:
             if positive:
                 result  = CLASS_POS_NORMAL
             else:

Modified: 1.3/test_suite/system_tests/model_free.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/test_suite/system_tests/model_free.py?rev=3340&r1=3339&r2=3340&view=diff
==============================================================================
--- 1.3/test_suite/system_tests/model_free.py (original)
+++ 1.3/test_suite/system_tests/model_free.py Thu Jul 12 11:34:48 2007
@@ -63,7 +63,7 @@
             # The test.
             self.test = self.set_csa
 
-         # Test of setting the CSA and the bond length.
+        # Test of setting the CSA and the bond length.
         if test_name == 'set csa and bond length':
             # The name of the test.
             self.name = "Setting both the CSA value and bond length through 
the user function value.set()"
@@ -71,7 +71,7 @@
             # The test.
             self.test = self.set_csa_bond_length
 
-       # Test of selecting model-free model m4.
+        # Test of selecting model-free model m4.
         if test_name == 'select m4':
             # The name of the test.
             self.name = "Selecting model m4 with parameters {S2, te, Rex} 
using model_free.select_model()"




Related Messages


Powered by MHonArc, Updated Sun Jul 15 16:20:07 2007