@@ -11,7 +11,7 @@ msgid ""
11
11
msgstr ""
12
12
"Project-Id-Version :Python 3.8\n "
13
13
"Report-Msgid-Bugs-To :\n "
14
- "POT-Creation-Date :2020-02-09 12:40 +0000\n "
14
+ "POT-Creation-Date :2020-12-23 16:03 +0000\n "
15
15
"PO-Revision-Date :2020-05-30 11:56+0000\n "
16
16
"Last-Translator :tomo, 2020\n "
17
17
"Language-Team :Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n "
@@ -157,9 +157,9 @@ msgstr ""
157
157
#: ../../library/asyncio-sync.rst:106
158
158
msgid ""
159
159
"An Event object manages an internal flag that can be set to *true* with the "
160
- ":meth:`set` method and reset to *false* with the :meth:`clear` method. The "
161
- ":meth:`wait` method blocks until the flag is set to*true*. The flag is set "
162
- " to *false* initially."
160
+ ":meth:`~Event. set` method and reset to *false* with the :meth:`clear` "
161
+ "method. The :meth:`~Event. wait` method blocks until the flag is set to "
162
+ "*true*. The flag is set to *false* initially."
163
163
msgstr ""
164
164
165
165
#: ../../library/asyncio-sync.rst:117
@@ -173,7 +173,7 @@ msgstr ""
173
173
#: ../../library/asyncio-sync.rst:144
174
174
msgid ""
175
175
"If the event is set, return ``True`` immediately. Otherwise block until "
176
- "another task calls :meth:`set`."
176
+ "another task calls :meth:`~Event. set`."
177
177
msgstr ""
178
178
179
179
#: ../../library/asyncio-sync.rst:149
@@ -190,8 +190,8 @@ msgstr ""
190
190
191
191
#: ../../library/asyncio-sync.rst:158
192
192
msgid ""
193
- "Tasks awaiting on :meth:`wait` will now block until the :meth:`set` method "
194
- "is called again."
193
+ "Tasks awaiting on :meth:`~Event. wait` will now block until the "
194
+ ":meth:`~Event.set` method is called again."
195
195
msgstr ""
196
196
197
197
#: ../../library/asyncio-sync.rst:163