spacepaste
new
Paste details
reply
|
raw
class S(object):
def __radd__(self, other):
return 'abc'
class O(str, S):
pass
a = O()
print ' ' + a