[issue20889] asyncio.docs : asyncio.Condition acquire/release/locked method undocumented

2014-03-13 Thread Roundup Robot
Roundup Robot added the comment: 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 -- nosy: +python-dev resolution: - fixed stage: -

[issue20889] asyncio.docs : asyncio.Condition acquire/release/locked method undocumented

2014-03-13 Thread STINNER Victor
STINNER Victor added the comment: Thanks Alexandre for the report. -- stage: committed/rejected - ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20889 ___

[issue20889] asyncio.docs : asyncio.Condition acquire/release/locked method undocumented

2014-03-11 Thread STINNER Victor
STINNER Victor added the comment: Here is a patch to document the 3 missing methods. -- keywords: +patch nosy: +gvanrossum, haypo, yselivanov Added file: http://bugs.python.org/file34351/asyncio_doc_cond.patch ___ Python tracker

[issue20889] asyncio.docs : asyncio.Condition acquire/release/locked method undocumented

2014-03-10 Thread Alexandre JABORSKA
New submission from Alexandre JABORSKA: While the asyncio.Condition.acquire(), release() an locked() methods work as expected (on the underlying Lock), they are not mentioned in the documentation. -- assignee: docs@python components: Documentation messages: 213117 nosy: ajaborsk,