@@ -64,14 +64,13 @@ msgid "All event loops on Windows do not support the following methods:"
64
64
msgstr "윈도우의 모든 이벤트 루프는 다음 메서드를 지원하지 않습니다:"
65
65
66
66
#: ../../library/asyncio-platforms.rst:38
67
- #, fuzzy
68
67
msgid ""
69
68
":meth:`loop.create_unix_connection` and :meth:`loop.create_unix_server` "
70
69
"are not supported. The :const:`socket.AF_UNIX` socket family is specific "
71
70
"to Unix."
72
71
msgstr ""
73
72
":meth:`loop.create_unix_connection` 와 :meth:`loop.create_unix_server`\\ 는 "
74
- "지원되지 않습니다. :data :`socket.AF_UNIX` 소켓 패밀리는 유닉스에만 적용됩니다."
73
+ "지원되지 않습니다. :const :`socket.AF_UNIX` 소켓 패밀리는 유닉스에만 적용됩니다."
75
74
76
75
#: ../../library/asyncio-platforms.rst:42
77
76
msgid ""
@@ -130,18 +129,16 @@ msgid ""
130
129
msgstr ":meth:`loop.add_reader`\\ 와 :meth:`loop.add_writer` 메서드는 지원되지 않습니다."
131
130
132
131
#: ../../library/asyncio-platforms.rst:65
133
- #, fuzzy
134
132
msgid ""
135
133
"The resolution of the monotonic clock on Windows is usually around 15.6 "
136
134
"milliseconds. The best resolution is 0.5 milliseconds. The resolution "
137
135
"depends on the hardware (availability of `HPET "
138
136
"<https://en.wikipedia.org/wiki/High_Precision_Event_Timer>`_) and on the "
139
137
"Windows configuration."
140
138
msgstr ""
141
- "윈도우에서 단조 시계의 해상도는 대개 15.6 msec 근처입니다. 최상의 해상도는 0.5 msec입니다. 해상도는 "
142
- "하드웨어(`HPET "
143
- "<https://en.wikipedia.org/wiki/High_Precision_Event_Timer>`_\\ 이 사용 가능한지)와"
144
- " 윈도우 구성에 따라 다릅니다."
139
+ "윈도우에서 단조 시계의 해상도는 대개 15.6 밀리초 근처입니다. 최상의 해상도는 0.5 밀리초입니다. 해상도는 하드웨어(`HPET"
140
+ " <https://en.wikipedia.org/wiki/High_Precision_Event_Timer>`_\\ 이 사용 "
141
+ "가능한지)와 윈도우 구성에 따라 다릅니다."
145
142
146
143
#: ../../library/asyncio-platforms.rst:75
147
144
msgid "Subprocess Support on Windows"
@@ -202,4 +199,10 @@ msgid ""
202
199
"loop = asyncio.SelectorEventLoop(selector)\n"
203
200
"asyncio.set_event_loop(loop)"
204
201
msgstr ""
202
+ "import asyncio\n"
203
+ "import selectors\n"
204
+ "\n"
205
+ "selector = selectors.SelectSelector()\n"
206
+ "loop = asyncio.SelectorEventLoop(selector)\n"
207
+ "asyncio.set_event_loop(loop)"
205
208
0 commit comments