extended test output
authorStefan Behnel <scoder@users.berlios.de>
Thu, 30 Apr 2009 16:23:58 +0000 (18:23 +0200)
committerStefan Behnel <scoder@users.berlios.de>
Thu, 30 Apr 2009 16:23:58 +0000 (18:23 +0200)
tests/run/closures_T82.pyx

index a29a442f840d4b9618aaa75ab7168e0831a3201a..f6121580e6ad472fd29c46ee4b7ffa76f8fa9456 100644 (file)
@@ -15,6 +15,7 @@ __doc__ = u"""
 #15
 
 >>> x2(1)(2)(4)
+4 2 1
 15
 
 >>> inner_override(2,4)()
@@ -81,6 +82,7 @@ def local_x(int arg_x):
 def x2(int x2):
     def y2(y2):
         def z2(long z2):
+            print z2, y2, x2
             return 8+z2+y2+x2
         return z2
     return y2