@@ -43,9 +43,8 @@ msgid "Create event loop, run a coroutine, close the loop."
43
43
msgstr "이벤트 루프를 만들고, 코루틴을 실행하고, 루프를 닫습니다."
44
44
45
45
#: ../../library/asyncio-api-index.rst:24
46
- #, fuzzy
47
46
msgid ":class:`Runner`"
48
- msgstr ":class:`Queue `"
47
+ msgstr ":class:`Runner `"
49
48
50
49
#: ../../library/asyncio-api-index.rst:25
51
50
msgid "A context manager that simplifies multiple async function calls."
@@ -60,9 +59,8 @@ msgid "Task object."
60
59
msgstr "Task 객체."
61
60
62
61
#: ../../library/asyncio-api-index.rst:30
63
- #, fuzzy
64
62
msgid ":class:`TaskGroup`"
65
- msgstr ":class:`Task `"
63
+ msgstr ":class:`TaskGroup `"
66
64
67
65
#: ../../library/asyncio-api-index.rst:31
68
66
msgid ""
@@ -75,9 +73,8 @@ msgid ":func:`create_task`"
75
73
msgstr ":func:`create_task`"
76
74
77
75
#: ../../library/asyncio-api-index.rst:36
78
- #, fuzzy
79
76
msgid "Start an asyncio Task, then returns it."
80
- msgstr "asyncio Task를 시작합니다 ."
77
+ msgstr "asyncio Task를 시작한 후 반환합니다 ."
81
78
82
79
#: ../../library/asyncio-api-index.rst:38
83
80
msgid ":func:`current_task`"
@@ -92,9 +89,8 @@ msgid ":func:`all_tasks`"
92
89
msgstr ":func:`all_tasks`"
93
90
94
91
#: ../../library/asyncio-api-index.rst:42
95
- #, fuzzy
96
92
msgid "Return all tasks that are not yet finished for an event loop."
97
- msgstr "이벤트 루프의 모든 태스크를 반환합니다."
93
+ msgstr "이벤트 루프의 아직 종료하지 않은 모든 태스크를 반환합니다."
98
94
99
95
#: ../../library/asyncio-api-index.rst:44
100
96
msgid "``await`` :func:`sleep`"
@@ -137,9 +133,8 @@ msgid "Monitor for completion."
137
133
msgstr "완료를 감시합니다."
138
134
139
135
#: ../../library/asyncio-api-index.rst:59
140
- #, fuzzy
141
136
msgid ":func:`timeout`"
142
- msgstr ":func:`run `"
137
+ msgstr ":func:`timeout `"
143
138
144
139
#: ../../library/asyncio-api-index.rst:60
145
140
msgid "Run with a timeout. Useful in cases when ``wait_for`` is not suitable."
@@ -150,7 +145,6 @@ msgid ":func:`to_thread`"
150
145
msgstr ":func:`to_thread`"
151
146
152
147
#: ../../library/asyncio-api-index.rst:63
153
- #, fuzzy
154
148
msgid "Asynchronously run a function in a separate OS thread."
155
149
msgstr "별도의 OS 스레드에서 함수를 비동기적으로 실행합니다."
156
150
@@ -394,23 +388,20 @@ msgid "A bounded semaphore."
394
388
msgstr "제한된 세마포어."
395
389
396
390
#: ../../library/asyncio-api-index.rst:200
397
- #, fuzzy
398
391
msgid ":class:`Barrier`"
399
- msgstr ":class:`StreamWriter `"
392
+ msgstr ":class:`Barrier `"
400
393
401
394
#: ../../library/asyncio-api-index.rst:201
402
- #, fuzzy
403
395
msgid "A barrier object."
404
- msgstr "이벤트 객체."
396
+ msgstr "장벽 객체."
405
397
406
398
#: ../../library/asyncio-api-index.rst:206
407
399
msgid ":ref:`Using asyncio.Event <asyncio_example_sync_event>`."
408
400
msgstr ":ref:`asyncio.Event 사용하기 <asyncio_example_sync_event>`."
409
401
410
402
#: ../../library/asyncio-api-index.rst:208
411
- #, fuzzy
412
403
msgid ":ref:`Using asyncio.Barrier <asyncio_example_barrier>`."
413
- msgstr ":ref:`asyncio.sleep() 사용하기 <asyncio_example_sleep >`."
404
+ msgstr ":ref:`asyncio.Barrier 사용하기 <asyncio_example_barrier >`."
414
405
415
406
#: ../../library/asyncio-api-index.rst:210
416
407
msgid ""
@@ -431,14 +422,12 @@ msgid "Raised when a Task is cancelled. See also :meth:`Task.cancel`."
431
422
msgstr "Task가 취소될 때 발생합니다. :meth:`Task.cancel`\\ 도 참조하십시오."
432
423
433
424
#: ../../library/asyncio-api-index.rst:225
434
- #, fuzzy
435
425
msgid ":exc:`asyncio.BrokenBarrierError`"
436
- msgstr ":exc:`asyncio.TimeoutError `"
426
+ msgstr ":exc:`asyncio.BrokenBarrierError `"
437
427
438
428
#: ../../library/asyncio-api-index.rst:226
439
- #, fuzzy
440
429
msgid "Raised when a Barrier is broken. See also :meth:`Barrier.wait`."
441
- msgstr "Task가 취소될 때 발생합니다. :meth:`Task.cancel `\\ 도 참조하십시오."
430
+ msgstr "Barrier 가 깨질 때 발생합니다. :meth:`Barrier.wait `\\ 도 참조하십시오."
442
431
443
432
#: ../../library/asyncio-api-index.rst:231
444
433
msgid ""
@@ -454,13 +443,3 @@ msgid ""
454
443
"exceptions>`."
455
444
msgstr ":ref:`asyncio 전용 예외 <asyncio-exceptions>`\\ 의 전체 목록도 참조하십시오."
456
445
457
- #~ msgid ""
458
- #~ "Raised on timeout by functions like "
459
- #~ ":func:`wait_for`. Keep in mind that "
460
- #~ "``asyncio.TimeoutError`` is **unrelated** to "
461
- #~ "the built-in :exc:`TimeoutError` exception."
462
- #~ msgstr ""
463
- #~ ":func:`wait_for`\\와 같은 함수에서 시간 초과 시 "
464
- #~ "발생합니다. ``asyncio.TimeoutError``\\는 내장 "
465
- #~ ":exc:`TimeoutError` 예외와 **관련이 없음**\\에 유의하세요."
466
-
0 commit comments