I need to copy some objects and I read that copy.copy module can do this on Python. The thing is, these objects have some attributes which are long arrays.
So is this method efficient? Since performance is important in this work I'm doing.
Is there a better way to do this?
I need this because I need to modify some attributes from the original object but then I need it without being modified also, something like an aux.
Cheers.