Closed
Description
@nicoddemus @hpk42 this one is fun
due to
>>> class a:
... pass
...
>>> a()[1]
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: a instance has no attribute '__getitem__'
>>> class b(object): pass
...
>>> b()[1]
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: 'b' object does not support indexing
>>>
we changed the behaviour of feature detection on report.long_repr