Bugs item #3075531, was opened at 2010-09-25 11:11
Message generated for change (Tracker Item Submitted) made by andrewme2
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=551954&aid=3075531&group_id=78018
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: pythonwin
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: andrewme2 (andrewme2)
Assigned to: Nobody/Anonymous (nobody)
Summary: Content of mutable objects changes when I type the dot '.'
Initial Comment:
>From the Python interpreter, create this function:
>>> def myfunc(some_list):
>>> some_list.append(2)
>>> return some_list
Now create an empty list 'abc' and type "myfunc(abc)." to invoke autocompletion. Without hitting enter, erase the line. 'abc' will now contain the number 2.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=551954&aid=3075531&group_id=78018
|