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.
24 lines
435 B
24 lines
435 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:
|
|
print("SKIP")
|
|
raise SystemExit
|
|
|
|
|
|
A()[1:2:3]
|
|
|
|
# test storing to attr (shouldn't be allowed)
|
|
class B:
|
|
def __getitem__(self, idx):
|
|
try:
|
|
idx.start = 0
|
|
except AttributeError:
|
|
print('AttributeError')
|
|
B()[:]
|
|
|