__deepcopy__ without recursive copies?

2005-01-25 Thread Bernie
#!/usr/bin/env python import sys import copy ''' How to define __deepcopy__ with out causing recursive calls to copies of self? Bernie Day 01/25/05 I was using deepcopy on DeviceManager and this worked well. When I defined __deepcopy__, so I could have a handle to the children of the Master

Re: __deepcopy__ without recursive copies?

2005-01-25 Thread [EMAIL PROTECTED]
Here I found something on __deepcopy__

Re: __deepcopy__ without recursive copies?

2005-01-25 Thread [EMAIL PROTECTED]
In this thread a solution is given on how to work with __deepcopy__: