summaryrefslogtreecommitdiff
path: root/python/helpers/pydev/tests_python/_debugger_case16.py
blob: 5622813acd0aae0418856bc1cc1a6224403715a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# this test requires numpy to be installed
import numpy

def main():
    smallarray = numpy.arange(100) * 1 + 1j
    bigarray = numpy.arange(100000).reshape((10,10000)) # 100 thousand
    hugearray = numpy.arange(10000000)  # 10 million

    pass  # location of breakpoint after all arrays defined

main()
print('TEST SUCEEDED')