projects
/
cython.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
38ceddf
)
test fixes
author
Stefan Behnel
<scoder@users.berlios.de>
Wed, 21 Oct 2009 19:43:53 +0000
(21:43 +0200)
committer
Stefan Behnel
<scoder@users.berlios.de>
Wed, 21 Oct 2009 19:43:53 +0000
(21:43 +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 9bb445b5d2172651e2e017449d4832b102bd6200..f05c5be2e2be1b856e7f73c1681483db67c50cc9 100644
(file)
--- a/
tests/run/locals_expressions_T430.pyx
+++ b/
tests/run/locals_expressions_T430.pyx
@@
-2,10
+2,10
@@
__doc__ = u"""
>>> sorted( get_locals(1,2,3, k=5) .items())
[('args', (2, 3)), ('kwds', {'k': 5}), ('x', 1), ('y', 'hi'), ('z', 5)]
->>> sorted(get_locals_items())
+>>> sorted(get_locals_items(
1,2,3, k=5
))
[('args', (2, 3)), ('kwds', {'k': 5}), ('x', 1), ('y', 'hi'), ('z', 5)]
->>> sorted(get_locals_items_listcomp())
+>>> sorted(get_locals_items_listcomp(
1,2,3, k=5
))
[('args', (2, 3)), ('kwds', {'k': 5}), ('x', 1), ('y', 'hi'), ('z', 5)]
"""