You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-04 09:22:40 +08:00
9 lines
133 B
Python
9 lines
133 B
Python
# Tests of Python slice operators
|
|
|
|
ary = [1,2,3,4,5]
|
|
# Forces BUILD_SLICE 2 on 3.x
|
|
ary[:2]
|
|
ary[2:]
|
|
# Forces BUILD_SLICE 3
|
|
ary[1:4:2]
|