diff --git a/tests/manual/debugger/python/math.py b/tests/manual/debugger/python/math.py index 3a1dd06891e..c21ad293c59 100644 --- a/tests/manual/debugger/python/math.py +++ b/tests/manual/debugger/python/math.py @@ -33,17 +33,17 @@ def testMath(): t = (1, 2, 3) d = {1: 'one', 2: 'two', 'three': 3} s = u'unixcode' - x = xrange(1, 10) - b = buffer("xxx") + x = range(1, 10) +# b = buffer("xxx") x = square(a) x = x * a x = x + 1 x = x - 1 return x - print cube(3) - print cube(4) - print cube(5) + print(cube(3)) + print(cube(4)) + print(cube(5)) def main(): testMath()