1414# Alpha Du <[email protected] >, 20221515# Bryan不可思议, 2023
1616# cissoid <[email protected] >, 202317- # Jiuh- star <[email protected] >, 202317+ # Jiuh. star <[email protected] >, 20231818# Shengjing Zhu <[email protected] >, 20231919# ppcfish <[email protected] >, 20232020# helloworldSB <[email protected] >, 202321212222# Y. Z. Chen <[email protected] >, 202323- # WH-2099 <[email protected] >, 20232423# Dai Xu <[email protected] >, 20232524# Freesand Leo <[email protected] >, 202425+ # WH-2099 <[email protected] >, 20242626#
2727#, fuzzy
2828msgid ""
2929msgstr ""
3030"Project-Id-Version : Python 3.12\n "
3131"Report-Msgid-Bugs-To : \n "
32- "POT-Creation-Date : 2024-03-01 14:13 +0000\n "
32+ "POT-Creation-Date : 2024-05-04 01:27 +0000\n "
3333"PO-Revision-Date : 2021-06-28 01:49+0000\n "
34- "Last-Translator : Freesand Leo <yuqinju@163 .com>, 2024\n "
34+ "Last-Translator : WH-2099 <wh2099@outlook .com>, 2024\n "
3535"Language-Team : Chinese (China) (https://app.transifex.com/python-doc/teams/5390/zh_CN/)\n "
3636"MIME-Version : 1.0\n "
3737"Content-Type : text/plain; charset=UTF-8\n "
@@ -642,7 +642,7 @@ msgid ""
642642"expression on the right hand side of an assignment statement."
643643msgstr "当yield表达式是赋值语句右侧的唯一表达式时,括号可以省略。"
644644
645- #: ../../reference/expressions.rst:512
645+ #: ../../reference/expressions.rst:511
646646msgid ":pep:`255` - Simple Generators"
647647msgstr ":pep:`255` - 简单生成器"
648648
@@ -652,7 +652,7 @@ msgid ""
652652"Python."
653653msgstr "在 Python 中加入生成器和 :keyword:`yield` 语句的提议。"
654654
655- #: ../../reference/expressions.rst:516
655+ #: ../../reference/expressions.rst:514
656656msgid ":pep:`342` - Coroutines via Enhanced Generators"
657657msgstr ":pep:`342` - 通过增强型生成器实现协程"
658658
@@ -662,7 +662,7 @@ msgid ""
662662" as simple coroutines."
663663msgstr "增强生成器 API 和语法的提议,使其可以被用作简单的协程。"
664664
665- #: ../../reference/expressions.rst:520
665+ #: ../../reference/expressions.rst:518
666666msgid ":pep:`380` - Syntax for Delegating to a Subgenerator"
667667msgstr ":pep:`380` - 委托给子生成器的语法"
668668
@@ -672,7 +672,7 @@ msgid ""
672672"making delegation to subgenerators easy."
673673msgstr "引入 :token:`~python-grammar:yield_from` 语法的提议,以方便地委托给子生成器。"
674674
675- #: ../../reference/expressions.rst:523
675+ #: ../../reference/expressions.rst:522
676676msgid ":pep:`525` - Asynchronous Generators"
677677msgstr ":pep:`525` - 异步生成器"
678678
@@ -880,10 +880,10 @@ msgid ""
880880"the resulting coroutine object, thus allowing any pending "
881881":keyword:`!finally` clauses to execute."
882882msgstr ""
883- "在异步生成器函数中,yield 表达式允许出现在 :keyword:`try` 结构的任何位置。 "
884- "但是,如果一个异步生成器在其被终结(由于引用计数达到零或被作为垃圾回收)之前未被恢复,则then a yield expression within a "
885- " :keyword:`!try` 结构中的 yield 表达式可能导致挂起的 :keyword:`finally` 子句执行失败。 "
886- "在此情况下,应由运行该异步生成器的事件循环或任务调度器来负责调用异步生成器-迭代器的 :meth:`~agen.aclose` "
883+ "在异步生成器函数中,yield 表达式允许出现在 :keyword:`try` "
884+ "结构的任何位置。 但是,如果一个异步生成器在其被终结(由于引用计数达到零或被作为垃圾回收)之前未被恢复,则 :keyword:`!try` 结构中的 "
885+ "yield 表达式可能导致挂起的 :keyword:`finally` "
886+ "子句执行失败。 在此情况下,应由运行该异步生成器的事件循环或任务调度器来负责调用异步生成器-迭代器的 :meth:`~agen.aclose` "
887887"方法并运行所返回的协程对象,从而允许任何挂起的 :keyword:`!finally` 子句得以执行。"
888888
889889#: ../../reference/expressions.rst:693
@@ -1369,7 +1369,7 @@ msgstr "除非引发了异常,调用总是会有返回值,返回值也可能
13691369msgid "If it is---"
13701370msgstr "如果类型为---"
13711371
1372- #: ../../reference/expressions.rst:1117
1372+ #: ../../reference/expressions.rst:1106
13731373msgid "a user-defined function:"
13741374msgstr "用户自定义函数:"
13751375
@@ -1384,7 +1384,7 @@ msgstr ""
13841384"函数的代码块会被执行,并向其传入参数列表。 代码块所做的第一件事是将正式形参绑定到对应参数;相关描述参见 :ref:`function` 一节。 "
13851385"当代码块执行 :keyword:`return` 语句时,由其指定函数调用的返回值。"
13861386
1387- #: ../../reference/expressions.rst:1131
1387+ #: ../../reference/expressions.rst:1119
13881388msgid "a built-in function or method:"
13891389msgstr "内置函数或方法:"
13901390
@@ -1394,15 +1394,15 @@ msgid ""
13941394"descriptions of built-in functions and methods."
13951395msgstr "具体结果依赖于解释器;有关内置函数和方法的描述参见 :ref:`built-in-funcs`。"
13961396
1397- #: ../../reference/expressions.rst:1138
1397+ #: ../../reference/expressions.rst:1133
13981398msgid "a class object:"
13991399msgstr "类对象:"
14001400
14011401#: ../../reference/expressions.rst:1138
14021402msgid "A new instance of that class is returned."
14031403msgstr "返回该类的一个新实例。"
14041404
1405- #: ../../reference/expressions.rst:1148
1405+ #: ../../reference/expressions.rst:1140
14061406msgid "a class instance method:"
14071407msgstr "类实例方法:"
14081408
@@ -1413,7 +1413,7 @@ msgid ""
14131413"the first argument."
14141414msgstr "调用相应的用户自定义函数,向其传入的参数列表会比调用的参数列表多一项:该实例将成为第一个参数。"
14151415
1416- #: ../../reference/expressions.rst:1157
1416+ #: ../../reference/expressions.rst:1150
14171417msgid "a class instance:"
14181418msgstr "类实例:"
14191419
0 commit comments