Is there a library method to copy all the properties between two (already present) instances of the same class, in Python? I mean, something like Apache Commons' PropertyUtilsBean.copyProperties()
Thanks!
|
1
|
Is there a library method to copy all the properties between two (already present) instances of the same class, in Python? I mean, something like Apache Commons' PropertyUtilsBean.copyProperties() Thanks!
|
|||
|
|
|
|
If your class does not modify _ _ getitem _ _ or _ _ setitem _ _ for special attribute access all your attributes are stored in _ _ dict _ _ so you can do:
If you use python properties you should look at |
||
|
|
|
|
Try |
||
|
|
|
|
I know you down-modded copy, but I disagree. It's more clear to make another copy than to modify the existing in-place with dict manipulation, as others suggested (if you lose existing copy by reassigning the variable, it will get garbage-collected immediately). Python is not meant to be fast, it's meant to be readable (though I actually believe that copy() will be faster than the other methods). |
||
|
|
|
If you have to do this, I guess the nicest way is to have a class attribute something like :
Then iterate them explicitly and use |
||
|
|
|
|
At the risk of being modded down, is there Unless we know exactly what it's for, we can't sensibly call it as "broken" as it seems. Perhaps try this:
That's the sane way of copying things between instances. |
||||
|