Skip to content

Instantly share code, notes, and snippets.

@lostmsu
Created June 2, 2020 06:15
Show Gist options
  • Save lostmsu/6d53e5340319a85e45db01857cc6ed61 to your computer and use it in GitHub Desktop.
Save lostmsu/6d53e5340319a85e45db01857cc6ed61 to your computer and use it in GitHub Desktop.
>>> class MyList(list):
... def __getitem__(self, idx):
... print('hello')
... return super().__getitem__(idx)
...
>>> l = MyList()
>>> l.append(42)
>>> l[0]
hello
42
>>> isinstance(l, list)
True
>>>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment