2015-09-11 17:31:32 -04:00
|
|
|
# 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")
|
2017-06-10 13:03:01 -04:00
|
|
|
raise SystemExit
|
2015-09-11 17:31:32 -04:00
|
|
|
|
|
|
|
|
|
|
|
A()[1:2:3]
|
2016-10-16 20:43:47 -04:00
|
|
|
|
|
|
|
# test storing to attr (shouldn't be allowed)
|
|
|
|
class B:
|
|
|
|
def __getitem__(self, idx):
|
|
|
|
try:
|
|
|
|
idx.start = 0
|
|
|
|
except AttributeError:
|
|
|
|
print('AttributeError')
|
|
|
|
B()[:]
|