Skip to content
Snippets Groups Projects
Commit 062bd818 authored by Paul Sokolovsky's avatar Paul Sokolovsky
Browse files

tests/basics/builtin_range: PEP8 fixes.

parent f4d55c91
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment