@@ -29,9 +29,8 @@ msgid "Guides and Tutorials"
29
29
msgstr "가이드 및 자습서"
30
30
31
31
#: ../../library/asyncio.rst:2
32
- #, fuzzy
33
32
msgid ":mod:`!asyncio` --- Asynchronous I/O"
34
- msgstr ":mod:`asyncio` --- 비동기 I/O"
33
+ msgstr ":mod:`! asyncio` --- 비동기 I/O"
35
34
36
35
#: ../../library/asyncio.rst: -1
37
36
msgid "Hello World!"
@@ -48,6 +47,14 @@ msgid ""
48
47
"\n"
49
48
"asyncio.run(main())"
50
49
msgstr ""
50
+ "import asyncio\n"
51
+ "\n"
52
+ "async def main():\n"
53
+ " print('Hello ...')\n"
54
+ " await asyncio.sleep(1)\n"
55
+ " print('... World!')\n"
56
+ "\n"
57
+ "asyncio.run(main())"
51
58
52
59
#: ../../library/asyncio.rst:22
53
60
msgid ""
@@ -103,16 +110,15 @@ msgid ""
103
110
msgstr "또한, *라이브러리와 프레임워크 개발자*\\ 가 다음과 같은 작업을 할 수 있도록 하는 **저수준** API가 있습니다:"
104
111
105
112
#: ../../library/asyncio.rst:48
106
- #, fuzzy
107
113
msgid ""
108
114
"create and manage :ref:`event loops <asyncio-event-loop>`, which provide "
109
115
"asynchronous APIs for :ref:`networking <loop_create_server>`, running "
110
116
":ref:`subprocesses <loop_subprocess_exec>`, handling :ref:`OS signals "
111
117
"<loop_add_signal_handler>`, etc;"
112
118
msgstr ""
113
- ":meth :`네트워킹 <loop.create_server >`, :meth :`자식 프로세스 <loop.subprocess_exec>` "
114
- " 실행, :meth :`OS 시그널 <loop.add_signal_handler >` 처리 등의 비동기 API를 제공하는 "
115
- ":ref:`이벤트 루프 <asyncio-event-loop>`\\ 를 만들고 관리합니다."
119
+ ":ref :`네트워킹 <loop_create_server >`, :ref :`자식 프로세스 <loop_subprocess_exec>` "
120
+ "실행, :ref :`OS 시그널 <loop_add_signal_handler >` 처리 등의 비동기 API를 제공하는 :ref:`이벤트 "
121
+ " 루프 <asyncio-event-loop>`\\ 를 만들고 관리합니다."
116
122
117
123
#: ../../library/asyncio.rst:53
118
124
msgid ""
@@ -140,7 +146,7 @@ msgstr ""
140
146
141
147
#: ../../library/asyncio.rst:64
142
148
msgid "asyncio REPL"
143
- msgstr ""
149
+ msgstr "asyncio REPL "
144
150
145
151
#: ../../library/asyncio.rst:65
146
152
msgid ""
@@ -159,6 +165,14 @@ msgid ""
159
165
">>> await asyncio.sleep(10, result='hello')\n"
160
166
"'hello'"
161
167
msgstr ""
168
+ "$ python -m asyncio\n"
169
+ "asyncio REPL ...\n"
170
+ "Use \" await\" directly instead of \" asyncio.run()\" .\n"
171
+ "Type \" help\" , \" copyright\" , \" credits\" or \" license\" for more "
172
+ "information.\n"
173
+ ">>> import asyncio\n"
174
+ ">>> await asyncio.sleep(10, result='hello')\n"
175
+ "'hello'"
162
176
163
177
#: ../../library/asyncio.rst:77
164
178
msgid ""
0 commit comments