summaryrefslogtreecommitdiff
path: root/python/helpers/pydev/tests_python/_debugger_case18.py
blob: 69717b2411ee8b1fb3764473e97e4dc8bbc24802 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23


def m2(a):
    a = 10
    b = 20 #Break here and set a = 40
    c = 30
    
    def function2():
        print a

    return a


def m1(a):
    return m2(a)


if __name__ == '__main__':
    found = m1(10)
    if found == 40:
        print('TEST SUCEEDED')
    else:
        raise AssertionError('Expected variable to be changed to 40. Found: %s' % (found,))