aboutsummaryrefslogtreecommitdiff
path: root/tests/cpydiff/types_bytes_subscrstep.py
blob: 51b94cb710f1ccd007e7c8cfa0e32152f761bbb3 (plain)
1
2
3
4
5
6
7
"""
categories: Types,bytes
description: Bytes subscription with step != 1 not implemented
cause: MicroPython is highly optimized for memory usage.
workaround: Use explicit loop for this very rare operation.
"""
print(b"123"[0:3:2])