[New-bugs-announce] [issue36118] Cannot correctly concatenate nested list that contains more than ~45 entries with other nested lists.

Domenico Barbieri report at bugs.python.org
Tue Feb 26 03:59:27 EST 2019


New submission from Domenico Barbieri <dbgiraldo1996 at gmail.com>:

Here is an example of what happens:

>>> x = [["a", "b", ... , "BZ"]]
>>> y = [[], [1,2,3,4,5, ... , 99]]
>>> y[0] = x[0]
>>> print(y[0])
>>> ["a", "b", "c", ... , "BZ", [1,2,3,4,5, ... , 99]]

----------
messages: 336634
nosy: Domenico Barbieri
priority: normal
severity: normal
status: open
title: Cannot correctly concatenate nested list that contains more than ~45 entries with other nested lists.
type: behavior
versions: Python 3.5

_______________________________________
Python tracker <report at bugs.python.org>
<https://bugs.python.org/issue36118>
_______________________________________


More information about the New-bugs-announce mailing list