File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -104,8 +104,8 @@ Event
104
104
that some event has happened.
105
105
106
106
An Event object manages an internal flag that can be set to *true *
107
- with the :meth: `set ` method and reset to *false * with the
108
- :meth: `clear ` method. The :meth: `wait ` method blocks until the
107
+ with the :meth: `~Event. set ` method and reset to *false * with the
108
+ :meth: `clear ` method. The :meth: `~Event. wait ` method blocks until the
109
109
flag is set to *true *. The flag is set to *false * initially.
110
110
111
111
@@ -142,7 +142,7 @@ Event
142
142
Wait until the event is set.
143
143
144
144
If the event is set, return ``True `` immediately.
145
- Otherwise block until another task calls :meth: `set `.
145
+ Otherwise block until another task calls :meth: `~Event. set `.
146
146
147
147
.. method :: set()
148
148
@@ -155,8 +155,8 @@ Event
155
155
156
156
Clear (unset) the event.
157
157
158
- Tasks awaiting on :meth: `wait ` will now block until the
159
- :meth: `set ` method is called again.
158
+ Tasks awaiting on :meth: `~Event. wait ` will now block until the
159
+ :meth: `~Event. set ` method is called again.
160
160
161
161
.. method :: is_set()
162
162
You can’t perform that action at this time.
0 commit comments