test fixes
authorStefan Behnel <scoder@users.berlios.de>
Wed, 21 Oct 2009 19:43:53 +0000 (21:43 +0200)
committerStefan Behnel <scoder@users.berlios.de>
Wed, 21 Oct 2009 19:43:53 +0000 (21:43 +0200)
tests/run/locals_expressions_T430.pyx

index 9bb445b5d2172651e2e017449d4832b102bd6200..f05c5be2e2be1b856e7f73c1681483db67c50cc9 100644 (file)
@@ -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)]
 """