Files
openide/python/helpers/pydev/tests_pydevd_python/_debugger_case16.py
T
2016-03-10 18:45:21 +03:00

13 lines
329 B
Python

# 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')