1# Test calling non-special method inherited from native type
2
3class mylist(list):
4    pass
5
6l = mylist([1, 2, 3])
7print(l)
8l.append(10)
9print(l)
10