View Single Post
Old Dec 13th, 2004, 7:06 PM   #8
JoeUser
Newbie
 
Join Date: Dec 2004
Posts: 8
Rep Power: 0 JoeUser is on a distinguished road
I figured it out. With normal arrays, you create an independent array with
arrayA = arrayB[:]
but with dictionary arrays, use
arrayA = arrayB.copy()
JoeUser is offline   Reply With Quote