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: Link for clear and wait missing in EventObjects
Type: enhancement Stage: resolved
Components: Documentation Versions: Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: berker.peksag, docs@python, georg.brandl, janonymous, janonymous, python-dev, tim.golden, willingc
Priority: normal Keywords: patch

Created on 2015-06-13 06:41 by janonymous, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
Fix_link.patch janonymous, 2015-06-13 06:41 A Patch for the same is attached. review
Messages (4)
msg245294 - (view) Author: Jaivish Kothari (janonymous) * Date: 2015-06-13 06:41
https://docs.python.org/2/library/threading.html#threading.Event.set

links missing for wait and clear .
set() is linked though.

Line: "

An event object manages an internal flag that can be set to true with the set() method and reset to false with the clear() method. The wait() method blocks until the flag is true.

"
msg245302 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2015-06-13 08:05
New changeset a985b6455fde by Berker Peksag in branch '2.7':
Issue #24443: Fix links for Event.clear() and Event.wait() methods.
https://hg.python.org/cpython/rev/a985b6455fde
msg245303 - (view) Author: Berker Peksag (berker.peksag) * (Python committer) Date: 2015-06-13 08:06
Thanks Jaivish!
msg245309 - (view) Author: Jaivish Kothari (janonymous) * Date: 2015-06-13 09:05
My Pleasure sir :)
History
Date User Action Args
2022-04-11 14:58:18adminsetgithub: 68631
2015-06-13 09:05:25janonymoussetmessages: + msg245309
2015-06-13 08:06:22berker.peksagsetstatus: open -> closed
resolution: fixed
messages: + msg245303

stage: resolved
2015-06-13 08:05:33python-devsetnosy: + python-dev
messages: + msg245302
2015-06-13 06:41:15janonymouscreate