88# ww song <[email protected] >, 201899# Yinuo Huang <[email protected] >, 2018101011- # Pan Felix <[email protected] >, 20191211# Freesand Leo <[email protected] >, 201912+ # Pan Felix <[email protected] >, 20191313#
1414#, fuzzy
1515msgid ""
@@ -18,7 +18,7 @@ msgstr ""
1818"Report-Msgid-Bugs-To : \n "
1919"POT-Creation-Date : 2019-01-01 10:14+0900\n "
2020"PO-Revision-Date : 2017-02-16 17:48+0000\n "
21- "Last-Translator : Freesand Leo <yuqinju@163 .com>, 2019\n "
21+ "Last-Translator : Pan Felix <tinylambda@gmail .com>, 2019\n "
2222"Language-Team : Chinese (China) (https://www.transifex.com/python-doc/teams/5390/zh_CN/)\n "
2323"MIME-Version : 1.0\n "
2424"Content-Type : text/plain; charset=UTF-8\n "
@@ -1137,6 +1137,8 @@ msgid ""
11371137"object usable to send and receive data on the connection, and *address* is "
11381138"the address bound to the socket on the other end of the connection."
11391139msgstr ""
1140+ "此 *scoket* 必须绑定到一个地址上并且监听连接。返回值是一个 ``(conn, address)`` 对,其中 *conn* 是一个 "
1141+ "*新*的套接字对象,用于在此连接上收发数据,*address* 是连接的另一端的套接字所绑定的地址。"
11401142
11411143#: ../../library/asyncio-eventloop.rst:850
11421144msgid ""
@@ -1227,7 +1229,7 @@ msgstr ""
12271229msgid ""
12281230"With :class:`SelectorEventLoop` event loop, the *pipe* is set to non-"
12291231"blocking mode."
1230- msgstr ""
1232+ msgstr "使用 :class:`SelectorEventLoop` 事件循环, *pipe* 被设置为非阻塞模式。 "
12311233
12321234#: ../../library/asyncio-eventloop.rst:931
12331235msgid "Register the write end of *pipe* in the event loop."
@@ -1276,6 +1278,8 @@ msgid ""
12761278"Raise :exc:`ValueError` if the signal number is invalid or uncatchable. "
12771279"Raise :exc:`RuntimeError` if there is a problem setting up the handler."
12781280msgstr ""
1281+ "如果信号数字非法或者不可捕获,就抛出一个 :exc:`ValueError` 。如果建立处理器的过程中出现问题,会抛出一个 "
1282+ ":exc:`RuntimeError` 。"
12791283
12801284#: ../../library/asyncio-eventloop.rst:974
12811285msgid ""
@@ -1295,7 +1299,7 @@ msgstr ""
12951299
12961300#: ../../library/asyncio-eventloop.rst:988
12971301msgid "The :mod:`signal` module."
1298- msgstr ""
1302+ msgstr ":mod:`signal` 模块。 "
12991303
13001304#: ../../library/asyncio-eventloop.rst:992
13011305msgid "Executing code in thread or process pools"
@@ -1351,15 +1355,15 @@ msgstr ""
13511355
13521356#: ../../library/asyncio-eventloop.rst:1070
13531357msgid "Error Handling API"
1354- msgstr ""
1358+ msgstr "错误处理API "
13551359
13561360#: ../../library/asyncio-eventloop.rst:1072
13571361msgid "Allows customizing how exceptions are handled in the event loop."
1358- msgstr ""
1362+ msgstr "允许自定义事件循环中如何去处理异常。 "
13591363
13601364#: ../../library/asyncio-eventloop.rst:1076
13611365msgid "Set *handler* as the new event loop exception handler."
1362- msgstr ""
1366+ msgstr "将 *handler* 设置为新的事件循环异常处理器。 "
13631367
13641368#: ../../library/asyncio-eventloop.rst:1078
13651369msgid ""
@@ -1379,7 +1383,7 @@ msgstr ""
13791383
13801384#: ../../library/asyncio-eventloop.rst:1095
13811385msgid "Default exception handler."
1382- msgstr ""
1386+ msgstr "默认的异常处理器。 "
13831387
13841388#: ../../library/asyncio-eventloop.rst:1097
13851389msgid ""
@@ -1392,11 +1396,11 @@ msgstr ""
13921396msgid ""
13931397"*context* parameter has the same meaning as in "
13941398":meth:`call_exception_handler`."
1395- msgstr ""
1399+ msgstr "*context* 参数和 :meth:`call_exception_handler` 中的同名参数完全相同。 "
13961400
13971401#: ../../library/asyncio-eventloop.rst:1106
13981402msgid "Call the current event loop exception handler."
1399- msgstr ""
1403+ msgstr "调用当前事件循环异常处理器。 "
14001404
14011405#: ../../library/asyncio-eventloop.rst:1108
14021406msgid ""
@@ -1406,31 +1410,31 @@ msgstr ""
14061410
14071411#: ../../library/asyncio-eventloop.rst:1111
14081412msgid "'message': Error message;"
1409- msgstr ""
1413+ msgstr "'message': 错误消息; "
14101414
14111415#: ../../library/asyncio-eventloop.rst:1112
14121416msgid "'exception' (optional): Exception object;"
1413- msgstr ""
1417+ msgstr "'exception' (可选): 异常对象; "
14141418
14151419#: ../../library/asyncio-eventloop.rst:1113
14161420msgid "'future' (optional): :class:`asyncio.Future` instance;"
1417- msgstr ""
1421+ msgstr "'future' (可选): :class:`asyncio.Future` 实例。 "
14181422
14191423#: ../../library/asyncio-eventloop.rst:1114
14201424msgid "'handle' (optional): :class:`asyncio.Handle` instance;"
1421- msgstr ""
1425+ msgstr "'handle' (可选): :class:`asyncio.Handle` 实例; "
14221426
14231427#: ../../library/asyncio-eventloop.rst:1115
14241428msgid "'protocol' (optional): :ref:`Protocol <asyncio-protocol>` instance;"
1425- msgstr ""
1429+ msgstr "'protocol' (可选): :ref:`Protocol <asyncio-protocol>` 实例; "
14261430
14271431#: ../../library/asyncio-eventloop.rst:1116
14281432msgid "'transport' (optional): :ref:`Transport <asyncio-transport>` instance;"
1429- msgstr ""
1433+ msgstr "'transport' (可选): :ref:`Transport <asyncio-transport>` 实例; "
14301434
14311435#: ../../library/asyncio-eventloop.rst:1117
14321436msgid "'socket' (optional): :class:`socket.socket` instance."
1433- msgstr ""
1437+ msgstr "'socket' (可选): :class:`socket.socket ` 实例。 "
14341438
14351439#: ../../library/asyncio-eventloop.rst:1121
14361440msgid ""
0 commit comments