From: Stefan Behnel Date: Thu, 7 Apr 2011 11:26:26 +0000 (+0200) Subject: whitespace X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=1de01311c1a5bb436d518cf37d5604f865a43b48;p=cython.git whitespace --- diff --git a/Cython/Compiler/TypeInference.py b/Cython/Compiler/TypeInference.py index e1fd9df2..a0870c76 100644 --- a/Cython/Compiler/TypeInference.py +++ b/Cython/Compiler/TypeInference.py @@ -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: