whitespace
authorStefan Behnel <scoder@users.berlios.de>
Thu, 7 Apr 2011 11:26:26 +0000 (13:26 +0200)
committerStefan Behnel <scoder@users.berlios.de>
Thu, 7 Apr 2011 11:26:26 +0000 (13:26 +0200)
Cython/Compiler/TypeInference.py

index e1fd9df22e898e772189e7543ab863f2057c2524..a0870c7657bd28502d52a43d5f9d38ae2d033e7e 100644 (file)
@@ -255,6 +255,7 @@ class SimpleAssignmentTypeInferer(object):
                             entries_by_dependancy[dep].add(entry)
                 else:
                     ready_to_infer.append(entry)
+
         def resolve_dependancy(dep):
             if dep in entries_by_dependancy:
                 for entry in entries_by_dependancy[dep]:
@@ -263,6 +264,7 @@ class SimpleAssignmentTypeInferer(object):
                     if not entry_deps and entry != dep:
                         del dependancies_by_entry[entry]
                         ready_to_infer.append(entry)
+
         # Try to infer things in order...
         while True:
             while ready_to_infer: