dd5d7c86d2
This can be enforced by pre-commit, but correct it separately to make it easier to review.
7 lines
86 B
Python
7 lines
86 B
Python
# subscripting a subclassed tuple
|
|
class Foo(tuple):
|
|
pass
|
|
|
|
foo = Foo((1,2))
|
|
foo[0]
|