New submission from Domenico Barbieri <dbgiraldo1...@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 <rep...@bugs.python.org>
<https://bugs.python.org/issue36118>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to