projects
/
cython.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e0afd5f
)
typo
author
Stefan Behnel
<scoder@users.berlios.de>
Tue, 25 May 2010 07:40:05 +0000
(09:40 +0200)
committer
Stefan Behnel
<scoder@users.berlios.de>
Tue, 25 May 2010 07:40:05 +0000
(09:40 +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 535c8045de6044f010c14b8f61ac1396a79308b9..3d7d38cd42e0449ce1fabd6afba65b517e3b9ebc 100644
(file)
--- a/
tests/run/locals_expressions_T430.pyx
+++ b/
tests/run/locals_expressions_T430.pyx
@@
-6,7
+6,7
@@
__doc__ = u"""
[('args', (2, 3)), ('kwds', {'k': 5}), ('x', 1), ('y', 'hi'), ('z', 5)]
>>> sorted(get_locals_items_listcomp(1,2,3, k=5))
-[('args', (2, 3)), 'item', None), ('kwds', {'k': 5}), ('x', 1), ('y', 'hi'), ('z', 5)]
+[('args', (2, 3)),
(
'item', None), ('kwds', {'k': 5}), ('x', 1), ('y', 'hi'), ('z', 5)]
"""
def get_locals(x, *args, **kwds):