Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b76b127

Browse files
[po] auto sync
1 parent a198573 commit b76b127

1 file changed

Lines changed: 10 additions & 8 deletions

File tree

library/ast.po

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -734,53 +734,55 @@ msgstr "一个函数定义。"
734734

735735
#: ../../library/ast.rst:1255
736736
msgid "``name`` is a raw string of the function name."
737-
msgstr ""
737+
msgstr "``name`` 是函数名称的原始字符串。"
738738

739739
#: ../../library/ast.rst:1256
740740
msgid "``args`` is an :class:`arguments` node."
741-
msgstr ""
741+
msgstr "``args`` 是一个 :class:`arguments` 节点。"
742742

743743
#: ../../library/ast.rst:1257
744744
msgid "``body`` is the list of nodes inside the function."
745-
msgstr ""
745+
msgstr "``body`` 是函数内部的节点列表。"
746746

747747
#: ../../library/ast.rst:1258
748748
msgid ""
749749
"``decorator_list`` is the list of decorators to be applied, stored outermost"
750750
" first (i.e. the first in the list will be applied last)."
751-
msgstr ""
751+
msgstr "``decorator_list`` 是要应用的装饰器列表,最外层的最先保存(即列表中的第一项将最后被应用)。"
752752

753753
#: ../../library/ast.rst:1260
754754
msgid "``returns`` is the return annotation."
755-
msgstr ""
755+
msgstr "``returns`` 是返回标注。"
756756

757757
#: ../../library/ast.rst:1269
758758
msgid ""
759759
"``lambda`` is a minimal function definition that can be used inside an "
760760
"expression. Unlike :class:`FunctionDef`, ``body`` holds a single node."
761761
msgstr ""
762+
"``lambda`` 是可在表达式内部使用的最小化函数定义。 不同于 :class:`FunctionDef`,``body`` 是保存一个单独节点。"
762763

763764
#: ../../library/ast.rst:1293
764765
msgid "The arguments for a function."
765-
msgstr ""
766+
msgstr "函数的参数。"
766767

767768
#: ../../library/ast.rst:1295
768769
msgid ""
769770
"``posonlyargs``, ``args`` and ``kwonlyargs`` are lists of :class:`arg` "
770771
"nodes."
771-
msgstr ""
772+
msgstr "``posonlyargs``, ``args`` 和 ``kwonlyargs`` 均为 :class:`arg` 节点的列表。"
772773

773774
#: ../../library/ast.rst:1296
774775
msgid ""
775776
"``vararg`` and ``kwarg`` are single :class:`arg` nodes, referring to the "
776777
"``*args, **kwargs`` parameters."
777778
msgstr ""
779+
"``vararg`` 和 ``kwarg`` 均为单独的 :class:`arg` 节点,指向 ``*args, **kwargs`` 形参。"
778780

779781
#: ../../library/ast.rst:1298
780782
msgid ""
781783
"``kw_defaults`` is a list of default values for keyword-only arguments. If "
782784
"one is ``None``, the corresponding argument is required."
783-
msgstr ""
785+
msgstr "``kw_defaults`` 是一个由仅限关键字参数默认值组成的列表。 如果有一个为 ``None``,则对应的参数为必须的参数。"
784786

785787
#: ../../library/ast.rst:1300
786788
msgid ""

0 commit comments

Comments
 (0)