Bugs item #1118101, was opened at 2005-02-07 19:49
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1118101&group_id=5470

Category: Regular Expressions
Group: Python 2.4
Status: Open
Resolution: None
Priority: 5
Submitted By: chopf (chopf)
Assigned to: Gustavo Niemeyer (niemeyer)
Summary: lists coupled

Initial Comment:
is this normal?
>>> ================================ RESTART
================================
>>> k=[1,2]
>>> k
[1, 2]
>>> l=k
>>> l
[1, 2]
>>> l[0]='hello'
>>> l
['hello', 2]
>>> k
['hello', 2]

expected: [1,2]

----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1118101&group_id=5470
_______________________________________________
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to