summaryrefslogtreecommitdiff
path: root/tests/run/locals_expressions_T430.pyx
diff options
context:
space:
mode:
authorStefan Behnel <scoder@users.berlios.de>2009-10-21 21:43:53 +0200
committerStefan Behnel <scoder@users.berlios.de>2009-10-21 21:43:53 +0200
commit9abadbd6cd169eb28bd067ebecd0c2a0162ac7b0 (patch)
tree9517ecdb1f74503e08b5e0506bc8391c5e7fdc6a /tests/run/locals_expressions_T430.pyx
parent38ceddfda0d5156d7bc95d2d0320b6c603e486ad (diff)
downloadcython-9abadbd6cd169eb28bd067ebecd0c2a0162ac7b0.tar.gz
test fixes
Diffstat (limited to 'tests/run/locals_expressions_T430.pyx')
-rw-r--r--tests/run/locals_expressions_T430.pyx4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/run/locals_expressions_T430.pyx b/tests/run/locals_expressions_T430.pyx
index 9bb445b5d..f05c5be2e 100644
--- 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)]
"""