@@ -21,7 +21,7 @@ msgid ""
2121msgstr ""
2222"Project-Id-Version : Python 3.7\n "
2323"Report-Msgid-Bugs-To : \n "
24- "POT-Creation-Date : 2019-02-22 10:42 +0900\n "
24+ "POT-Creation-Date : 2019-03-28 11:05 +0900\n "
2525"PO-Revision-Date : 2017-02-16 23:38+0000\n "
2626"
Last-Translator :
Freesand Leo <[email protected] >, 2019\n "
2727"Language-Team : Chinese (China) (https://www.transifex.com/python-doc/teams/5390/zh_CN/)\n "
@@ -659,8 +659,8 @@ msgstr ":attr:`__doc__`"
659659#: ../../reference/datamodel.rst:475
660660msgid ""
661661"The function's documentation string, or ``None`` if unavailable; not "
662- "inherited by subclasses"
663- msgstr "该函数的文档字符串,没有则为 ``None``;不会被子类所继承 "
662+ "inherited by subclasses. "
663+ msgstr ""
664664
665665#: ../../reference/datamodel.rst:475 ../../reference/datamodel.rst:480
666666#: ../../reference/datamodel.rst:483 ../../reference/datamodel.rst:488
@@ -675,16 +675,16 @@ msgid ":attr:`~definition.\\ __name__`"
675675msgstr ":attr:`~definition.\\ __name__`"
676676
677677#: ../../reference/datamodel.rst:480
678- msgid "The function's name"
679- msgstr "该函数的名称 "
678+ msgid "The function's name. "
679+ msgstr ""
680680
681681#: ../../reference/datamodel.rst:483
682682msgid ":attr:`~definition.\\ __qualname__`"
683683msgstr ":attr:`~definition.\\ __qualname__`"
684684
685685#: ../../reference/datamodel.rst:483
686- msgid "The function's :term:`qualified name`"
687- msgstr "该函数的 :term:`qualified name` "
686+ msgid "The function's :term:`qualified name`. "
687+ msgstr ""
688688
689689#: ../../reference/datamodel.rst:488
690690msgid ":attr:`__module__`"
@@ -703,8 +703,8 @@ msgstr ":attr:`__defaults__`"
703703#: ../../reference/datamodel.rst:492
704704msgid ""
705705"A tuple containing default argument values for those arguments that have "
706- "defaults, or ``None`` if no arguments have a default value"
707- msgstr "由具有默认值的参数的默认参数值组成的元组,如无任何参数具有默认值则为 ``None`` "
706+ "defaults, or ``None`` if no arguments have a default value. "
707+ msgstr ""
708708
709709#: ../../reference/datamodel.rst:498
710710msgid ":attr:`__code__`"
@@ -2595,24 +2595,24 @@ msgid "When a class definition is executed, the following steps occur:"
25952595msgstr "当一个类定义被执行时,将发生以下步骤:"
25962596
25972597#: ../../reference/datamodel.rst:1864
2598- msgid "MRO entries are resolved"
2599- msgstr "解析 MRO 条目 "
2598+ msgid "MRO entries are resolved; "
2599+ msgstr ""
26002600
26012601#: ../../reference/datamodel.rst:1865
2602- msgid "the appropriate metaclass is determined"
2603- msgstr "确定适当的元类 "
2602+ msgid "the appropriate metaclass is determined; "
2603+ msgstr ""
26042604
26052605#: ../../reference/datamodel.rst:1866
2606- msgid "the class namespace is prepared"
2607- msgstr "准备类命名空间 "
2606+ msgid "the class namespace is prepared; "
2607+ msgstr ""
26082608
26092609#: ../../reference/datamodel.rst:1867
2610- msgid "the class body is executed"
2611- msgstr "执行类主体 "
2610+ msgid "the class body is executed; "
2611+ msgstr ""
26122612
26132613#: ../../reference/datamodel.rst:1868
2614- msgid "the class object is created"
2615- msgstr "创建类对象 "
2614+ msgid "the class object is created. "
2615+ msgstr ""
26162616
26172617#: ../../reference/datamodel.rst:1872
26182618msgid "Resolving MRO entries"
@@ -2644,20 +2644,20 @@ msgstr "为一个类定义确定适当的元类是根据以下规则:"
26442644
26452645#: ../../reference/datamodel.rst:1892
26462646msgid ""
2647- "if no bases and no explicit metaclass are given, then :func:`type` is used"
2648- msgstr "如果没有给出基类也没有显式元类,则使用 :func:`type` "
2647+ "if no bases and no explicit metaclass are given, then :func:`type` is used; "
2648+ msgstr ""
26492649
26502650#: ../../reference/datamodel.rst:1893
26512651msgid ""
26522652"if an explicit metaclass is given and it is *not* an instance of "
2653- ":func:`type`, then it is used directly as the metaclass"
2654- msgstr "如果给出一个显式元类而且 *不是* :func:`type` 的实例,则其会被直接用作元类 "
2653+ ":func:`type`, then it is used directly as the metaclass; "
2654+ msgstr ""
26552655
26562656#: ../../reference/datamodel.rst:1895
26572657msgid ""
26582658"if an instance of :func:`type` is given as the explicit metaclass, or bases "
2659- "are defined, then the most derived metaclass is used"
2660- msgstr "如果给出一个 :func:`type` 的实例作为显式元类,或是定义了基类,则使用最近派生的元类 "
2659+ "are defined, then the most derived metaclass is used. "
2660+ msgstr ""
26612661
26622662#: ../../reference/datamodel.rst:1898
26632663msgid ""
@@ -2784,8 +2784,8 @@ msgstr ""
27842784#: ../../reference/datamodel.rst:1983
27852785msgid ""
27862786"second, all of these ``__set_name__`` methods are called with the class "
2787- "being defined and the assigned name of that particular descriptor; and "
2788- msgstr "接下来,所有这些 ``__set_name__`` 方法将使用所定义的类和特定描述器所赋的名称进行调用; "
2787+ "being defined and the assigned name of that particular descriptor;"
2788+ msgstr ""
27892789
27902790#: ../../reference/datamodel.rst:1985
27912791msgid ""
@@ -2901,8 +2901,8 @@ msgstr "模拟泛型类型"
29012901#: ../../reference/datamodel.rst:2055
29022902msgid ""
29032903"One can implement the generic class syntax as specified by :pep:`484` (for "
2904- "example ``List[int]``) by defining a special method"
2905- msgstr "通过定义一个特殊方法,可以实现由 :pep:`484` 所规定的泛型类语法 (例如 ``List[int]``) "
2904+ "example ``List[int]``) by defining a special method: "
2905+ msgstr ""
29062906
29072907#: ../../reference/datamodel.rst:2060
29082908msgid ""
0 commit comments