From f8fb4809751d243e90e366f408733bf77ba821bf Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Tue, 20 Jul 2010 20:59:42 +0200 Subject: [PATCH] fix code annotation of 'finally' block --- Cython/Compiler/Nodes.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Cython/Compiler/Nodes.py b/Cython/Compiler/Nodes.py index c91aa80c..716bfe82 100644 --- a/Cython/Compiler/Nodes.py +++ b/Cython/Compiler/Nodes.py @@ -4906,6 +4906,7 @@ class TryFinallyStatNode(StatNode): code.putln( "}") temps_to_clean_up = code.funcstate.all_free_managed_temps() + code.mark_pos(self.finally_clause.pos) code.putln( "/*finally:*/ {") cases_used = [] -- 2.26.2