From: Berker Peksag Date: Sat, 13 Jun 2015 08:05:31 +0000 (+0300) Subject: Issue #24443: Fix links for Event.clear() and Event.wait() methods. X-Git-Tag: v2.7.11rc1~267 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0e8af341facc2d5256f7847d830dec86d7a22126;p=thirdparty%2FPython%2Fcpython.git Issue #24443: Fix links for Event.clear() and Event.wait() methods. Patch by Jaivish Kothari. --- diff --git a/Doc/library/threading.rst b/Doc/library/threading.rst index a24c3858dba6..04a6ebedea26 100644 --- a/Doc/library/threading.rst +++ b/Doc/library/threading.rst @@ -710,8 +710,8 @@ This is one of the simplest mechanisms for communication between threads: one thread signals an event and other threads wait for it. An event object manages an internal flag that can be set to true with the -:meth:`~Event.set` method and reset to false with the :meth:`clear` method. The -:meth:`wait` method blocks until the flag is true. +:meth:`~Event.set` method and reset to false with the :meth:`~Event.clear` +method. The :meth:`~Event.wait` method blocks until the flag is true. .. class:: Event()