Re: Does this always go right

2006-12-06 Thread Carl . Wolff
Hello Gabriel, > For your simple test dictionary, copy and deepcopy behaves > identically. If you wish, you should test using values that are > containers themselves. thanks, your answer clarifies a lot. Gtx carl -- http://mail.python.org/mailman/listinfo/python-list

Re: Does this always go right

2006-12-05 Thread Gabriel Genellina
At Tuesday 5/12/2006 12:04, [EMAIL PROTECTED] wrote: question about copy vs deepcopy used in multithreaded context: suppose the following program below: the original dictionary is modified after the thread is started, the thread works on a copied and deepcopied version of the original dictio

Does this always go right

2006-12-05 Thread Carl . Wolff
Hello question about copy vs deepcopy used in multithreaded context: suppose the following program below: the original dictionary is modified after the thread is started, the thread works on a copied and deepcopied version of the original dictionary. Is the dictionary named "originalcopy" iso