I have two object A and B with same type, and want to copy all object A's field to object B but keep object B's PK.
A well known method is change object A's pk to None and save, it will create a new object with object A's field, but what I want is to copy to an existing object not create a new object.
copymodule, but it's difficult to suggest anything without some more context.