projects
/
cython.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b555033
)
test comment
author
Stefan Behnel
<scoder@users.berlios.de>
Thu, 27 May 2010 17:09:44 +0000
(19:09 +0200)
committer
Stefan Behnel
<scoder@users.berlios.de>
Thu, 27 May 2010 17:09:44 +0000
(19:09 +0200)
tests/run/locals_expressions_T430.pyx
patch
|
blob
|
history
diff --git
a/tests/run/locals_expressions_T430.pyx
b/tests/run/locals_expressions_T430.pyx
index 3d7d38cd42e0449ce1fabd6afba65b517e3b9ebc..36a044f0738f526dc58d592ae2a89f9bf513b377 100644
(file)
--- 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() ]