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
062bd818
Commit
062bd818
authored
Oct 05, 2015
by
Paul Sokolovsky
Browse files
tests/basics/builtin_range: PEP8 fixes.
parent
f4d55c91
Changes
1
Hide whitespace changes
Inline
Side-by-side
tests/basics/builtin_range.py
View file @
062bd818
...
...
@@ -28,11 +28,11 @@ print(range(4)[1:2])
print
(
range
(
4
)[
1
:
3
])
print
(
range
(
4
)[
1
::
2
])
print
(
range
(
4
)[
1
:
-
2
:
2
])
print
(
range
(
1
,
4
)[:])
print
(
range
(
1
,
4
)[
0
:])
print
(
range
(
1
,
4
)[
1
:])
print
(
range
(
1
,
4
)[:
-
1
])
print
(
range
(
7
,
-
2
,
-
4
)[:])
print
(
range
(
1
,
4
)[:])
print
(
range
(
1
,
4
)[
0
:])
print
(
range
(
1
,
4
)[
1
:])
print
(
range
(
1
,
4
)[:
-
1
])
print
(
range
(
7
,
-
2
,
-
4
)[:])
# attrs
print
(
range
(
1
,
2
,
3
).
start
)
...
...
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