From: Robert Bradshaw Date: Sat, 29 Mar 2008 18:41:46 +0000 (-0700) Subject: more comments on control flow X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=e75e3530abcdcffa50e3e947ee887093993cde2c;p=cython.git more comments on control flow --- diff --git a/Cython/Compiler/ControlFlow.py b/Cython/Compiler/ControlFlow.py index 25e81a56..a1e811e1 100644 --- a/Cython/Compiler/ControlFlow.py +++ b/Cython/Compiler/ControlFlow.py @@ -9,6 +9,9 @@ import bisect # could be done on get_state, clearing the cache on set_state (assuming # incoming is immutable). +# This module still needs a lot of work, and probably should totally be +# redesigned. It doesn't take return, raise, continue, or break into +# account. class ControlFlow: