diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2015-06-13 08:05:31 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2015-06-13 08:05:31 (GMT) |
commit | 0e8af341facc2d5256f7847d830dec86d7a22126 (patch) | |
tree | 3ee79ffa7f3c9fefbbb0a4774e7fcfa23a9aba1b /Doc | |
parent | 039573dc172785d852c251478b43d130304400d0 (diff) | |
download | cpython-0e8af341facc2d5256f7847d830dec86d7a22126.zip cpython-0e8af341facc2d5256f7847d830dec86d7a22126.tar.gz cpython-0e8af341facc2d5256f7847d830dec86d7a22126.tar.bz2 |
Issue #24443: Fix links for Event.clear() and Event.wait() methods.
Patch by Jaivish Kothari.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/threading.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/threading.rst b/Doc/library/threading.rst index a24c385..04a6ebe 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() |