From: Stefan Behnel Date: Wed, 21 Oct 2009 19:43:53 +0000 (+0200) Subject: test fixes X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=9abadbd6cd169eb28bd067ebecd0c2a0162ac7b0;p=cython.git test fixes --- diff --git a/tests/run/locals_expressions_T430.pyx b/tests/run/locals_expressions_T430.pyx index 9bb445b5..f05c5be2 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)] """