Skip to content

Instantly share code, notes, and snippets.

@morgabra
Created March 5, 2013 22:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save morgabra/5095010 to your computer and use it in GitHub Desktop.
Save morgabra/5095010 to your computer and use it in GitHub Desktop.
>>> class Test(list):
... def __getitem__(self, index):
... print index
...
>>> a = Test()
>>> a[1,2]
(1, 2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment