Alexandru  Mosoi wrote:

> how can i do an atomic read+increment? something like
> 
> with lock:
>    old = atomic_int
>    atomic_int += 1
> 
> but in one operation

As above - the lock (under the assumption that it is actually a
threading.Lock) will ensure that.

Diez
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to