You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
243 B
16 lines
243 B
# 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]
|
|
|