Files
python-uncompyle6/test/simple_source/slice/02_slice.py
rocky b7003914c9 localize 2 and 3 argument BUILD_SLICE...
Nontermninal name matches AST anme now. Add test.
2017-11-25 21:10:11 -05:00

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]