Inconsistent list/pointer problem
Richard Brodie
R.Brodie at rl.ac.uk
Thu Feb 1 08:30:32 EST 2007
More information about the Python-list mailing list
Thu Feb 1 08:30:32 EST 2007
- Previous message (by thread): Inconsistent list/pointer problem
- Next message (by thread): Inconsistent list/pointer problem
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
"Doug Stell" <celiadoug at mchsi.com> wrote in message news:tcp3s2996ukp0439omj70pjug5r8diu8p1 at 4ax.com... > I call the function, passing in a list as the input data. The function > must manipulate and operate on a copy of that list's data, without > altering the list in the calling routine. Then you will want to make a copy: listB = copy.deepcopy( listA)
- Previous message (by thread): Inconsistent list/pointer problem
- Next message (by thread): Inconsistent list/pointer problem
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list