mirror of
https://github.com/W3SLAV/micropython.git
synced 2025-06-21 04:55:38 -04:00
12 lines
168 B
Python
12 lines
168 B
Python
# test builtin slice
|
|
|
|
# print slice
|
|
class A:
|
|
def __getitem__(self, idx):
|
|
print(idx)
|
|
return idx
|
|
s = A()[1:2:3]
|
|
|
|
# check type
|
|
print(type(s) is slice)
|