mirror of
https://github.com/micropython/micropython.git
synced 2026-01-07 04:30:24 +01:00
basics/enumerate.py: Don't turn enumerate test into heap test.
With range(10000), doesn't fit into 128K heap.
This commit is contained in:
@@ -2,5 +2,5 @@ print(list(enumerate([])))
|
||||
print(list(enumerate([1, 2, 3])))
|
||||
print(list(enumerate([1, 2, 3], 5)))
|
||||
print(list(enumerate([1, 2, 3], -5)))
|
||||
print(list(enumerate(range(10000))))
|
||||
print(list(enumerate(range(1000))))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user