Re: Copy vs Deepcopy in multithreaded contexts

2006-12-06 Thread Carl . Wolff
Hello, this issue is solved, no help needed. Gtx Carl. - Forwarded by Carl Wolff/IT/NL/Imtech on 06-12-2006 10:51 - Carl Wolff/IT/NL/Imtech wrote on 05-12-2006 22:55:20: > Hello > > question about copy vs deepcopy used in multithreaded context: > > suppose the fo

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

Copy vs Deepcopy in multithreaded contexts

2006-12-05 Thread Carl . Wolff
Helloquestion 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" isolated fro

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