This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Eric Leadbetter
Recipients Eric Leadbetter, docs@python
Date 2016-11-18.16:32:33
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1479486754.06.0.767072130944.issue28736@psf.upfronthosting.co.za>
In-reply-to
Content
The documentation on the multiprocessing library in Python 3 uses Lock.acquire()/Lock.release() in the example for primitive synchronization (https://docs.python.org/3/library/multiprocessing.html#synchronization-between-processes). Lock() has been changed in Python 3 to use coroutines and so the documentation should replace the call to Lock.acquire() with an appropriate yield statement.
History
Date User Action Args
2016-11-18 16:32:34Eric Leadbettersetrecipients: + Eric Leadbetter, docs@python
2016-11-18 16:32:34Eric Leadbettersetmessageid: <1479486754.06.0.767072130944.issue28736@psf.upfronthosting.co.za>
2016-11-18 16:32:34Eric Leadbetterlinkissue28736 messages
2016-11-18 16:32:33Eric Leadbettercreate