My class represents states of various systems. Each instance has two attributes: one is a container shared between all the states of the same system, and the other is a container that is unique to each instance.
A copy of a state should reuse the "shared" attribute, but create a deep copy of the "unique" attribute. This is really the only copy semantics that makes sense (it's natural that the copy of a state is a state of the same system).
I want to create the least surprise for people who read and maintain my code. Should I override __deepcopy__ or __copy__ for my purposes?
__deepcopy__if you are taking a poll... – Colt 45 Apr 20 '12 at 21:42