88# Freesand Leo <[email protected] >, 201899# Meng Du <[email protected] >, 20191010# walkinrain <[email protected] >, 201911+ # kevin wong <[email protected] >, 20191112#
1213#, fuzzy
1314msgid ""
@@ -16,7 +17,7 @@ msgstr ""
1617"Report-Msgid-Bugs-To : \n "
1718"POT-Creation-Date : 2019-01-01 10:14+0900\n "
1819"PO-Revision-Date : 2017-02-16 17:49+0000\n "
19- "Last-Translator : walkinrain <walkinrain2008@163 .com>, 2019\n "
20+ "Last-Translator : kevin wong <huagang517@126 .com>, 2019\n "
2021"Language-Team : Chinese (China) (https://www.transifex.com/python-doc/teams/5390/zh_CN/)\n "
2122"MIME-Version : 1.0\n "
2223"Content-Type : text/plain; charset=UTF-8\n "
@@ -33,56 +34,59 @@ msgid ""
3334"Streams are high-level async/await-ready primitives to work with network "
3435"connections. Streams allow sending and receiving data without using "
3536"callbacks or low-level protocols and transports."
36- msgstr ""
37+ msgstr "流是用于处理网络连接的高级 async/await-ready 原语。流允许发送和接收数据,而不需要使用回调或低级协议和传输。 "
3738
3839#: ../../library/asyncio-stream.rst:15
3940msgid ""
4041"Here is an example of a TCP echo client written using asyncio streams::"
41- msgstr ""
42+ msgstr "下面是一个使用 asyncio streams 编写的 TCP echo 客户端示例:: "
4243
4344#: ../../library/asyncio-stream.rst:37
4445msgid "See also the `Examples`_ section below."
45- msgstr ""
46+ msgstr "参见下面的 `Examples`_ 部分。 "
4647
4748#: ../../library/asyncio-stream.rst:41
4849msgid "Stream Functions"
49- msgstr ""
50+ msgstr "Stream 函数 "
5051
5152#: ../../library/asyncio-stream.rst:42
5253msgid ""
5354"The following top-level asyncio functions can be used to create and work "
5455"with streams:"
55- msgstr ""
56+ msgstr "下面的高级 asyncio 函数可以用来创建和处理流: "
5657
5758#: ../../library/asyncio-stream.rst:51
5859msgid ""
5960"Establish a network connection and return a pair of ``(reader, writer)`` "
6061"objects."
61- msgstr ""
62+ msgstr "建立网络连接并返回一对' ``(reader, writer)`` 对象。 "
6263
6364#: ../../library/asyncio-stream.rst:54
6465msgid ""
6566"The returned *reader* and *writer* objects are instances of "
6667":class:`StreamReader` and :class:`StreamWriter` classes."
6768msgstr ""
69+ "返回的 *reader* 和 *writer* 对象是 :class:`StreamReader` 和 :class: `StreamWriter` "
70+ "类的实例。"
6871
6972#: ../../library/asyncio-stream.rst:57
7073msgid ""
7174"The *loop* argument is optional and can always be determined automatically "
7275"when this function is awaited from a coroutine."
73- msgstr ""
76+ msgstr "*loop* 参数是可选的,当从协程中等待该函数时,总是可以自动确定。 "
7477
7578#: ../../library/asyncio-stream.rst:60 ../../library/asyncio-stream.rst:93
7679msgid ""
7780"*limit* determines the buffer size limit used by the returned "
7881":class:`StreamReader` instance. By default the *limit* is set to 64 KiB."
7982msgstr ""
83+ "*limit* 确定返回的 :class:`StreamReader` 实例使用的缓冲区大小限制。默认情况下,*limit* 设置为 64 KiB 。"
8084
8185#: ../../library/asyncio-stream.rst:64
8286msgid ""
8387"The rest of the arguments are passed directly to "
8488":meth:`loop.create_connection`."
85- msgstr ""
89+ msgstr "其余的参数直接传递到 :meth:`loop.create_connection` 。 "
8690
8791#: ../../library/asyncio-stream.rst:69 ../../library/asyncio-stream.rst:122
8892msgid "The *ssl_handshake_timeout* parameter."
0 commit comments