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.

classification
Title: asyncio.docs : asyncio.Condition acquire/release/locked method undocumented
Type: enhancement Stage:
Components: Documentation Versions: Python 3.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: ajaborsk, docs@python, gvanrossum, python-dev, vstinner, yselivanov
Priority: normal Keywords: patch

Created on 2014-03-11 05:19 by ajaborsk, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
asyncio_doc_cond.patch vstinner, 2014-03-11 07:30 review
Messages (4)
msg213117 - (view) Author: Alexandre JABORSKA (ajaborsk) Date: 2014-03-11 05:19
While the asyncio.Condition.acquire(), release() an locked() methods work as expected (on the underlying Lock), they are not mentioned in the documentation.
msg213125 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2014-03-11 07:30
Here is a patch to document the 3 missing methods.
msg213377 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2014-03-13 09:54
New changeset f22e1d89486d by Victor Stinner in branch 'default':
Close #20889: asyncio doc: Document acquire(), locked() and release() method of
http://hg.python.org/cpython/rev/f22e1d89486d
msg213378 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2014-03-13 09:55
Thanks Alexandre for the report.
History
Date User Action Args
2022-04-11 14:57:59adminsetgithub: 65088
2014-03-13 09:55:07vstinnersetmessages: + msg213378
stage: resolved ->
2014-03-13 09:54:32python-devsetstatus: open -> closed

nosy: + python-dev
messages: + msg213377

resolution: fixed
stage: resolved
2014-03-11 07:30:58vstinnersetfiles: + asyncio_doc_cond.patch

nosy: + gvanrossum, vstinner, yselivanov
messages: + msg213125

keywords: + patch
2014-03-11 05:19:55ajaborskcreate