views:

47

answers:

2

I tried to implement __concat__, but it didn't work

>>> class lHolder():
...     def __init__(self,l):
...             self.l=l
...     def __concat__(self, l2):
...             return self.l+l2
...     def __iter__(self):
...             return self.l.__iter__()
... 
>>> lHolder([1])+[2]
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: unsupported operand type(s) for +: 'lHolder' and 'list'

How can I fix this?

+2  A: 

You want to implement __add__, not __concat__. There's no __concat__ special method in Python.

Mark Dickinson
+5  A: 

__concat__ is not a special method (http://docs.python.org/glossary.html#term-special-method). It is part of the operator module.

You will need to implement __add__ to get the behaviour you want.

PreludeAndFugue
You just scraped in first
Casebash