vote up 1 vote down star
1

Is there a copy constructor in python ? If not what would I do to achieve something similar ?

The situation is that I am using a library and I have extended one of the classes there with extra functionality and I want to be able to convert the objects I get from the library to instances of my own class.

flag

78% accept rate
You might be interested in this question [disclaimer: I was the one who asked it]: stackoverflow.com/questions/990758/… – balpha Aug 6 at 20:22
Thanks, exactly that I was looking for. I'll close this question. – Zitrax Aug 6 at 20:31
Be careful. The warnings posted by some of the answerers are not to be underestimated. – balpha Aug 6 at 20:35
To it does not look very readable, I am probably changing my code from using inheritance to just encapsulate the other object instead. – Zitrax Aug 6 at 20:46

2 Answers

vote up 5 vote down check

I think you want the copy module

import copy

x = copy.copy(y)        # make a shallow copy of y
x = copy.deepcopy(y)    # make a deep copy of y

you can control copying in much the same way as you control pickle.

link|flag
vote up 0 vote down

For your situation, I would suggest writing a class method (or it could be a static method or a separate function) that takes as an argument an instance of the library's class and returns an instance of your class with all applicable attributes copied over.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.