From: Stefan Behnel Date: Thu, 27 May 2010 17:09:44 +0000 (+0200) Subject: test comment X-Git-Tag: 0.13.beta0~2^2~32 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=4643409590cb1e2006746e99213e162fe4cdb7d0;p=cython.git test comment --- 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() ]