aeb62f9ae3
Configurable with MICROPY_PY_BUILTINS_SLICE_ATTRS. Disabled by default.
17 lines
243 B
Python
17 lines
243 B
Python
# test builtin slice attributes access
|
|
|
|
# print slice attributes
|
|
class A:
|
|
def __getitem__(self, idx):
|
|
print(idx.start, idx.stop, idx.step)
|
|
|
|
try:
|
|
t = A()[1:2]
|
|
except:
|
|
import sys
|
|
print("SKIP")
|
|
sys.exit()
|
|
|
|
|
|
A()[1:2:3]
|