diff --git a/tests/95_pdb.py b/tests/95_pdb.py index b44f7536..f60ef89d 100644 --- a/tests/95_pdb.py +++ b/tests/95_pdb.py @@ -1,19 +1,19 @@ -a = 1 -b = 2 +# a = 1 +# b = 2 -print(a, b) +# print(a, b) -def f(a, b): - b = a + b - print(a, b) - return b +# def f(a, b): +# b = a + b +# print(a, b) +# return b -def g(a, b): - breakpoint() - c = f(a, b) - return c +# def g(a, b): +# breakpoint() +# c = f(a, b) +# return c -g(1, 2) -f(3, 4) +# g(1, 2) +# f(3, 4)