1b997d5244
See the `skip_travis_tests` variable. Fixes #495 (also tidied up usage of os.path.basename() function)
7 lines
118 B
Python
7 lines
118 B
Python
l = list(range(10000))
|
|
try:
|
|
100000000 * l
|
|
except MemoryError:
|
|
print('MemoryError')
|
|
print(len(l), l[0], l[-1])
|