[docs] [issue35786] get_lock() method is not present for Values created using multiprocessing.Manager()

Pablo Galindo Salgado report at bugs.python.org
Sun Jan 20 17:04:18 EST 2019


Pablo Galindo Salgado <pablogsal at gmail.com> added the comment:

You are not using multiprocessing.Value:

>>> import multiprocessing
>>> x = multiprocessing.Value("i", 0)
>>> x.get_lock()
<RLock(None, 0)>

----------
nosy: +pablogsal

_______________________________________
Python tracker <report at bugs.python.org>
<https://bugs.python.org/issue35786>
_______________________________________


More information about the docs mailing list