"Martin P. Hellwig" <[EMAIL PROTECTED]> writes: > I assume that this is not a problem, but since assuming something > gives a lot of room for screw-ups I rather ask beforehand if I should > except all kinds of troubles when multiple threads update 'at the same > time' a dictionary or that I should lock the dictionary, for each > update?
Use a lock, or serialize the updates through a queue. -- http://mail.python.org/mailman/listinfo/python-list