File tree 1 file changed +5
-5
lines changed 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -101,8 +101,8 @@ Event
101
101
that some event has happened.
102
102
103
103
An Event object manages an internal flag that can be set to *true *
104
- with the :meth: `set ` method and reset to *false * with the
105
- :meth: `clear ` method. The :meth: `wait ` method blocks until the
104
+ with the :meth: `~Event. set ` method and reset to *false * with the
105
+ :meth: `clear ` method. The :meth: `~Event. wait ` method blocks until the
106
106
flag is set to *true *. The flag is set to *false * initially.
107
107
108
108
.. _asyncio_example_sync_event :
@@ -135,7 +135,7 @@ Event
135
135
Wait until the event is set.
136
136
137
137
If the event is set, return ``True `` immediately.
138
- Otherwise block until another task calls :meth: `set `.
138
+ Otherwise block until another task calls :meth: `~Event. set `.
139
139
140
140
.. method :: set()
141
141
@@ -148,8 +148,8 @@ Event
148
148
149
149
Clear (unset) the event.
150
150
151
- Tasks awaiting on :meth: `wait ` will now block until the
152
- :meth: `set ` method is called again.
151
+ Tasks awaiting on :meth: `~Event. wait ` will now block until the
152
+ :meth: `~Event. set ` method is called again.
153
153
154
154
.. method :: is_set()
155
155
You can’t perform that action at this time.
0 commit comments