Skip to content

Instantly share code, notes, and snippets.

@fmayer
Created February 8, 2013 18:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save fmayer/4741022 to your computer and use it in GitHub Desktop.
Save fmayer/4741022 to your computer and use it in GitHub Desktop.
>>> class A(object):
... def __add__(self, o): return "add"
...
... class B(A):
... def __radd__(self, o): return "radd"
>>> A() + B()
0: 'radd'
>>>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment