copy object?

L

lallous

Hello

I am new to python and have some questions.

How to copy objects using another method than this:

class op:
def __init__(self, op):
for x in dir(op):
if x[:2] == "__":
continue
setattr(self, x, getattr(op, x))

o = op(src)

I tried to copy with "o = copy.copy(src)" but as soon as "src" is
gone, "o"'s attributes are not correct, and I cannot use copy.deepcopy
() because of this error:
TypeError: object.__new__(SwigPyObject) is not safe, use
SwigPyObject.__new__()

Can the previous for loop be simplified and replaced with a map() and
a lambda function?

Thanks.
 
T

Terry Reedy

lallous said:
Hello

I am new to python and have some questions.

How to copy objects using another method than this:

class op:
def __init__(self, op):

What do you expect op to be? Certainly not the class 'op'.
for x in dir(op):
if x[:2] == "__":
continue
setattr(self, x, getattr(op, x))

o = op(src)

I tried to copy with "o = copy.copy(src)" but as soon as "src" is
gone, "o"'s attributes are not correct, and I cannot use copy.deepcopy
() because of this error:
TypeError: object.__new__(SwigPyObject) is not safe, use
SwigPyObject.__new__()

Can the previous for loop be simplified and replaced with a map() and
a lambda function?

If you want the instance to be a copy of another instance, the easier
place to make the copy would be in the __new__ method, where you might
be able to use copy.copy.

tjr
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,755
Messages
2,569,534
Members
45,008
Latest member
Rahul737

Latest Threads

Top