summaryrefslogtreecommitdiff
path: root/python/helpers/pydev/tests_python/_debugger_case4.py
blob: 009da4a6bef2ba63ae6cc030f452720b2d985a2a (plain)
1
2
3
4
5
6
7
8
import time
if __name__ == '__main__':
    for i in range(10):
        print('here %s' % i)
        time.sleep(1)
    
    print('TEST SUCEEDED')