Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
uPython-mirror
Commits
8d90a382
Commit
8d90a382
authored
Feb 11, 2014
by
Paul Sokolovsky
Browse files
basics/enumerate.py: Don't turn enumerate test into heap test.
With range(10000), doesn't fit into 128K heap.
parent
4e246085
Changes
1
Hide whitespace changes
Inline
Side-by-side
tests/basics/enumerate.py
View file @
8d90a382
...
...
@@ -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
(
1000
0
))))
print
(
list
(
enumerate
(
range
(
1000
))))
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment