Mark Dickinson added the comment:

@osantana: you'd need to be using the lock at least in `__setitem__` and 
`__delitem__` as well, else there's nothing preventing modifications to the 
dictionary during the `list` call. It may make sense to protect *all* accesses 
(read or write) to `_data`, though you'd need to either use a re-entrant lock 
in that case or be very careful about not acquiring the lock twice.

----------
nosy: +mark.dickinson

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue30441>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to