From 4643409590cb1e2006746e99213e162fe4cdb7d0 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Thu, 27 May 2010 19:09:44 +0200 Subject: [PATCH] test comment --- tests/run/locals_expressions_T430.pyx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/run/locals_expressions_T430.pyx b/tests/run/locals_expressions_T430.pyx index 3d7d38cd..36a044f0 100644 --- a/tests/run/locals_expressions_T430.pyx +++ b/tests/run/locals_expressions_T430.pyx @@ -20,7 +20,8 @@ def get_locals_items(x, *args, **kwds): return locals().items() def get_locals_items_listcomp(x, *args, **kwds): - # FIXME: 'item' should *not* appear in locals() ! + # FIXME: 'item' should *not* appear in locals() yet, as locals() + # is evaluated before assigning to item ! cdef int z = 5 y = "hi" return [ item for item in locals().items() ] -- 2.26.2