Issue995757

classification
Title: list constructor does not create a copy of given list
Type: Severity: normal
Components: None Versions:
Milestone:
process
Status: closed Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: peer-griebel
Priority: normal Keywords:

Created on 2004-07-22.08:13:07 by peer-griebel, last changed 2004-07-23.08:47:59 by peer-griebel.

Messages
msg910 (view) Author: Dr. Peer Griebel (peer-griebel) Date: 2004-07-22.08:13:07
In CPython list(somelist) creates a new list as is done
using somelist[:]. So somelist==list(somelist) yields
false. But in Jython list(somelist) simply returns
somelist which I think is a bug.
msg911 (view) Author: Dr. Peer Griebel (peer-griebel) Date: 2004-07-23.08:47:59
Logged In: YES 
user_id=238967

Seems to be fixed already. See #567844.
History
Date User Action Args
2004-07-22 08:13:07peer-griebelcreate