New submission from stf:

>>> a = ([1,2],)
>>> a[0] += [3]

this raises an Type Error but adds the Elements to a.
So a is ([1, 2, 3],) afterwards.

This Problem doesn't occur, when you use a[0].append(3)

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue24346>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to