mirror of
https://github.com/W3SLAV/micropython.git
synced 2025-06-28 08:08:54 -04:00

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])
|