summaryrefslogtreecommitdiff
path: root/python/testData/mover/moveStatement.py
blob: ce6d5a1fe7f4bc89727c9d213a2e1f90d8acb512 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
class A:
    def f(self, a, b):
        while a:
            a = a / 2
        if a:
            b = 1
        elif<caret> b:
            a = 1
        else:
            print "a"
        for i in range(1, 10):
            print i