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

Skip to content

Commit 4669988

Browse files
[po] auto sync
1 parent f650911 commit 4669988

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
@@ -897,53 +897,55 @@ msgstr "一个函数定义。"
897897

898898
#: ../../library/ast.rst:1623
899899
msgid "``name`` is a raw string of the function name."
900-
msgstr ""
900+
msgstr "``name`` 是函数名称的原始字符串。"
901901

902902
#: ../../library/ast.rst:1624
903903
msgid "``args`` is an :class:`arguments` node."
904-
msgstr ""
904+
msgstr "``args`` 是一个 :class:`arguments` 节点。"
905905

906906
#: ../../library/ast.rst:1625
907907
msgid "``body`` is the list of nodes inside the function."
908-
msgstr ""
908+
msgstr "``body`` 是函数内部的节点列表。"
909909

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

916916
#: ../../library/ast.rst:1628
917917
msgid "``returns`` is the return annotation."
918-
msgstr ""
918+
msgstr "``returns`` 是返回标注。"
919919

920920
#: ../../library/ast.rst:1637
921921
msgid ""
922922
"``lambda`` is a minimal function definition that can be used inside an "
923923
"expression. Unlike :class:`FunctionDef`, ``body`` holds a single node."
924924
msgstr ""
925+
"``lambda`` 是可在表达式内部使用的最小化函数定义。 不同于 :class:`FunctionDef`,``body`` 是保存一个单独节点。"
925926

926927
#: ../../library/ast.rst:1661
927928
msgid "The arguments for a function."
928-
msgstr ""
929+
msgstr "函数的参数。"
929930

930931
#: ../../library/ast.rst:1663
931932
msgid ""
932933
"``posonlyargs``, ``args`` and ``kwonlyargs`` are lists of :class:`arg` "
933934
"nodes."
934-
msgstr ""
935+
msgstr "``posonlyargs``, ``args`` 和 ``kwonlyargs`` 均为 :class:`arg` 节点的列表。"
935936

936937
#: ../../library/ast.rst:1664
937938
msgid ""
938939
"``vararg`` and ``kwarg`` are single :class:`arg` nodes, referring to the "
939940
"``*args, **kwargs`` parameters."
940941
msgstr ""
942+
"``vararg`` 和 ``kwarg`` 均为单独的 :class:`arg` 节点,指向 ``*args, **kwargs`` 形参。"
941943

942944
#: ../../library/ast.rst:1666
943945
msgid ""
944946
"``kw_defaults`` is a list of default values for keyword-only arguments. If "
945947
"one is ``None``, the corresponding argument is required."
946-
msgstr ""
948+
msgstr "``kw_defaults`` 是一个由仅限关键字参数默认值组成的列表。 如果有一个为 ``None``,则对应的参数为必须的参数。"
947949

948950
#: ../../library/ast.rst:1668
949951
msgid ""

0 commit comments

Comments
 (0)