mailr3811 - /1.3/test_suite/unit_tests/_prompt/data_types.py


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

Header


Content

Posted by edward on November 22, 2007 - 11:27:
Author: bugman
Date: Thu Nov 22 11:27:39 2007
New Revision: 3811

URL: http://svn.gna.org/viewcvs/relax?rev=3811&view=rev
Log:
Alphabetically sorted the initialisation of DATA_TYPES to bring some order to 
the chaos.


Modified:
    1.3/test_suite/unit_tests/_prompt/data_types.py

Modified: 1.3/test_suite/unit_tests/_prompt/data_types.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/test_suite/unit_tests/_prompt/data_types.py?rev=3811&r1=3810&r2=3811&view=diff
==============================================================================
--- 1.3/test_suite/unit_tests/_prompt/data_types.py (original)
+++ 1.3/test_suite/unit_tests/_prompt/data_types.py Thu Nov 22 11:27:39 2007
@@ -46,17 +46,28 @@
 """An array of many different Python objects for testing the correct 
behaviour of user function args."""
 
 
-# None.
-DATA_TYPES.append(['None', None])
+# Binaries.
+DATA_TYPES.append(['bin', 0])
+DATA_TYPES.append(['bin', 1])
+
+# Booleans.
+DATA_TYPES.append(['bool', True])
+DATA_TYPES.append(['bool', False])
+
+# Class objects.
+DATA_TYPES.append(['class obj', Container()])
+
+# Classes.
+DATA_TYPES.append(['class', Container])
+
+# Dictionaries.
+DATA_TYPES.append(['dict', {}])
+DATA_TYPES.append(['dict', {'a': 0, 'b': 1}])
 
 # Integers.
 DATA_TYPES.append(['int', 2])
 DATA_TYPES.append(['int', 10])
 DATA_TYPES.append(['int', -10])
-
-# Binaries.
-DATA_TYPES.append(['bin', 0])
-DATA_TYPES.append(['bin', 1])
 
 # File descriptor.
 DATA_TYPES.append(['file', tmpfile()])
@@ -70,21 +81,7 @@
 DATA_TYPES.append(['function', dummy_fn])
 DATA_TYPES.append(['function', dummy_fn2])
 
-# Classes.
-DATA_TYPES.append(['class', Container])
-
-# Class objects.
-DATA_TYPES.append(['class obj', Container()])
-
-# Strings.
-DATA_TYPES.append(['str', 'a'])
-DATA_TYPES.append(['str', '10'])
-
-# Booleans.
-DATA_TYPES.append(['bool', True])
-DATA_TYPES.append(['bool', False])
-
-# List.
+# Lists.
 DATA_TYPES.append(['list', []])
 DATA_TYPES.append(['list', [None, None]])
 
@@ -97,13 +94,16 @@
 # List of numbers.
 DATA_TYPES.append(['number list', [-1., 0, 1.]])
 
-# List of strings.
+# Lists of strings.
 DATA_TYPES.append(['str list', ['a']])
 DATA_TYPES.append(['str list', ['a', 'asldfjk']])
 
-# Dictionary.
-DATA_TYPES.append(['dict', {}])
-DATA_TYPES.append(['dict', {'a': 0, 'b': 1}])
+# None.
+DATA_TYPES.append(['None', None])
+
+# Strings.
+DATA_TYPES.append(['str', 'a'])
+DATA_TYPES.append(['str', '10'])
 
 # Tuple.
 DATA_TYPES.append(['tuple', (None, None)])




Related Messages


Powered by MHonArc, Updated Thu Nov 22 11:40:06 2007