@@ -98,7 +98,8 @@ msgstr ""
9898msgid ""
9999"Like :c:func:`PyList_GetItemRef`, but returns a :term:`borrowed reference` "
100100"instead of a :term:`strong reference`."
101- msgstr "與 :c:func:`PyList_GetItemRef` 類似,但回傳一個 :term:`borrowed reference` "
101+ msgstr ""
102+ "與 :c:func:`PyList_GetItemRef` 類似,但回傳一個 :term:`borrowed reference` "
102103"而非一個 :term:`strong reference`。"
103104
104105#: ../../c-api/list.rst:80
@@ -118,8 +119,7 @@ msgstr ""
118119msgid ""
119120"This function\" steals\" a reference to *item* and discards a reference to "
120121"an item already in the list at the affected position."
121- msgstr ""
122- "此函式「竊取」對 *item* 的參照,並丟棄對串列中受影響位置上已存在項目的參照。"
122+ msgstr "此函式「竊取」對 *item* 的參照,並丟棄對串列中受影響位置上已存在項目的參照。"
123123
124124#: ../../c-api/list.rst:97
125125msgid ""
@@ -134,7 +134,8 @@ msgid ""
134134"Bounds checking is performed as an assertion if Python is built "
135135"in :ref:`debug mode <debug-build>` or :option:`with assertions <--with-"
136136"assertions>`."
137- msgstr "如果 Python 是以 :ref:`debug mode <debug-build>` 或 "
137+ msgstr ""
138+ "如果 Python 是以 :ref:`debug mode <debug-build>` 或 "
138139":option:`with assertions <--with-assertions>` 建置,則會進行作為"
139140"斷言(asserting)的邊界檢查。"
140141
@@ -197,16 +198,18 @@ msgid ""
197198"Extend *list* with the contents of *iterable*. This is the same as "
198199"``PyList_SetSlice(list, PY_SSIZE_T_MAX, PY_SSIZE_T_MAX, iterable)`` and "
199200"analogous to ``list.extend(iterable)`` or ``list += iterable``."
200- msgstr "將 *iterable* 中的內容擴展至 *list*。這與 ``PyList_SetSlice(list, "
201+ msgstr ""
202+ "將 *iterable* 中的內容擴展至 *list*。這與 ``PyList_SetSlice(list, "
201203"PY_SSIZE_T_MAX, PY_SSIZE_T_MAX, iterable)`` 相同,類似於 "
202204"``list.extend(iterable)`` 或 ``list += iterable``。"
203205
204206#: ../../c-api/list.rst:148
205207msgid ""
206208"Raise an exception and return ``-1`` if *list* is not a :class:`list` "
207209"object. Return 0 on success."
208- msgstr "引發一個例外並回傳 ``-1`` 如果 *list* 不是一個 :class:`list` 物件。"
209- "如果成功回傳 0。"
210+ msgstr ""
211+ "引發一個例外並回傳 ``-1`` 如果 *list* 不是一個 :class:`list` 物件。如果成功回"
212+ "傳 0。"
210213
211214#: ../../c-api/list.rst:156
212215msgid ""