We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03659c5 commit 218a876Copy full SHA for 218a876
1 file changed
tests/basics/builtin_range.py
@@ -33,6 +33,10 @@
33
print(range(1, 4)[1:])
34
print(range(1, 4)[:-1])
35
print(range(7, -2, -4)[:])
36
+print(range(1, 100, 5)[5:15:3])
37
+print(range(1, 100, 5)[15:5:-3])
38
+print(range(100, 1, -5)[5:15:3])
39
+print(range(100, 1, -5)[15:5:-3])
40
41
# zero step
42
try:
0 commit comments