I need to manipulate a large list of objects. Now, I need to invoke copy.deepcopy and it raises a RunTimeError: maximum recursion depth exceeded (Its OK when I try it with a smaller list.). My question is: Is there any other way to get the feature of copy.deepcopy which does not have this problem? Regards.
5316 次