Changes by stf :
--
title: Key Error at List in Tuple concatenation -> TypeError at List in Tuple
concatenation
___
Python tracker
<http://bugs.python.org/issu
Changes by stf :
Removed file: http://bugs.python.org/file39587/bug.txt
___
Python tracker
<http://bugs.python.org/issue24346>
___
___
Python-bugs-list mailing list
Unsub
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
Changes by stf :
Added file: http://bugs.python.org/file39587/bug.txt
___
Python tracker
<http://bugs.python.org/issue24346>
___
___
Python-bugs-list mailing list
Unsub
Changes by stf :
--
components: Interpreter Core
nosy: stf
priority: normal
severity: normal
status: open
title: Key Error at List in Tuple concatenation
type: behavior
versions: Python 3.4
___
Python tracker
<http://bugs.python.org/issue24