Details
-
Bug
-
Status: Closed
-
Critical
-
Resolution: Fixed
-
1.0-JSR-2
-
None
-
None
Description
Addition of two lists does not work correctly,
For example:
x = [1,2]
y = [3,4]
z = x + y
print z // [1,2,[3,4]]
The value of z is not [1,2,3,4], but [1,2,[3,4]].