@@ -498,15 +498,14 @@ msgstr ""
498498"函式生成的字串和 Python 2 的 :func:`repr` 回傳的結果相似。"
499499
500500#: ../../library/functions.rst:124
501- #, fuzzy
502501msgid ""
503502"Convert an integer number to a binary string prefixed with \" 0b\" . The "
504503"result is a valid Python expression. If *integer* is not a Python :class:"
505504"`int` object, it has to define an :meth:`~object.__index__` method that "
506505"returns an integer. Some examples:"
507506msgstr ""
508507"將一個整數轉變為一個前綴為 \" 0b\" 的二進位制字串。結果是一個有效的 Python 運"
509- "算式。如果 *x * 不是 Python 的 :class:`int` 物件,那它需要定義 :meth:`~object."
508+ "算式。如果 *integer * 不是 Python 的 :class:`int` 物件,那它需要定義 :meth:`~object."
510509"__index__` method 回傳一個整數。舉例來說:"
511510
512511#: ../../library/functions.rst:134
@@ -686,22 +685,20 @@ msgid ""
686685msgstr "這個函式一開始在 Python 3.0 被移除,但在 Python 3.2 又被重新加入。"
687686
688687#: ../../library/functions.rst:247
689- #, fuzzy
690688msgid ""
691689"Return the string representing a character with the specified Unicode code "
692690"point. For example, ``chr(97)`` returns the string ``'a'``, while "
693691"``chr(8364)`` returns the string ``'€'``. This is the inverse of :func:`ord`."
694692msgstr ""
695- "回傳代表字元之 Unicode 編碼位置為整數 *i* 的字串 。例如,``chr(97)`` 回傳字串 "
693+ "回傳代表有特定 Unicode 編碼位置字元的字串 。例如,``chr(97)`` 回傳字串 "
696694"``'a'``,而 ``chr(8364)`` 回傳字串 ``'€'``。這是 :func:`ord` 的逆函式。"
697695
698696#: ../../library/functions.rst:251
699- #, fuzzy
700697msgid ""
701698"The valid range for the argument is from 0 through 1,114,111 (0x10FFFF in "
702699"base 16). :exc:`ValueError` will be raised if it is outside that range."
703700msgstr ""
704- "引數的有效範圍是 0 到 1,114,111(16 進制表示為 0x10FFFF)。如果 *i* 超過這個 "
701+ "引數的有效範圍是 0 到 1,114,111(16 進制表示為 0x10FFFF)。如果它超過這個 "
705702"範圍,會引發 :exc:`ValueError`。"
706703
707704#: ../../library/functions.rst:257
@@ -1698,13 +1695,12 @@ msgstr ""
16981695"(signature) 更加全面和一致。"
16991696
17001697#: ../../library/functions.rst:921
1701- #, fuzzy
17021698msgid ""
17031699"Convert an integer number to a lowercase hexadecimal string prefixed with "
17041700"\" 0x\" . If *integer* is not a Python :class:`int` object, it has to define "
17051701"an :meth:`~object.__index__` method that returns an integer. Some examples:"
17061702msgstr ""
1707- "將整數轉換為以 \" 0x\" 為前綴的小寫十六進位制字串。如果 *x * 不是 Python :"
1703+ "將整數轉換為以 \" 0x\" 為前綴的小寫十六進位制字串。如果 *integer * 不是 Python :"
17081704"class:`int` 物件,則必須定義一個 :meth:`~object.__index__` method 並且回傳一"
17091705"個整數。舉例來說:"
17101706
@@ -1966,7 +1962,6 @@ msgstr ""
19661962"exc:`TypeError`。"
19671963
19681964#: ../../library/functions.rst:1100
1969- #, fuzzy
19701965msgid ""
19711966"Return an :term:`iterator` object. The first argument is interpreted very "
19721967"differently depending on the presence of the second argument. Without a "
@@ -1982,12 +1977,12 @@ msgid ""
19821977"raised, otherwise the value will be returned."
19831978msgstr ""
19841979"回傳一個 :term:`iterator` 物件。根據是否存在第二個引數,第一個引數的意義是非"
1985- "常不同的。如果沒有第二個引數,*object* 必須是支援 :term:`iterable` 協定(有 :"
1980+ "常不同的。如果沒有第二個引數,該單一引數必須是支援 :term:`iterable` 協定(有 :"
19861981"meth:`~object.__iter__` method)的集合物件,或必須支援序列協定(有 :meth:"
19871982"`~object.__getitem__` 方法,且數字引數從 ``0`` 開始)。如果它不支援這些協定,"
1988- "會引發 :exc:`TypeError`。如果有第二個引數 *sentinel*,那麼 *object* 必須是可 "
1983+ "會引發 :exc:`TypeError`。如果有第二個引數 *sentinel*,那麼第一引數必須是可 "
19891984"呼叫的物件,這種情況下生成的 iterator,每次疊代呼叫 :meth:`~iterator."
1990- "__next__` 時會不帶引數地呼叫 *object *;如果回傳的結果是 *sentinel* 則引發 :"
1985+ "__next__` 時會不帶引數地呼叫 *callable *;如果回傳的結果是 *sentinel* 則引發 :"
19911986"exc:`StopIteration`,否則回傳呼叫結果。"
19921987
19931988#: ../../library/functions.rst:1114
@@ -2244,15 +2239,14 @@ msgstr ""
22442239"任意屬性賦給 :class:`object` 的實例。"
22452240
22462241#: ../../library/functions.rst:1301
2247- #, fuzzy
22482242msgid ""
22492243"Convert an integer number to an octal string prefixed with \" 0o\" . The "
22502244"result is a valid Python expression. If *integer* is not a Python :class:"
22512245"`int` object, it has to define an :meth:`~object.__index__` method that "
22522246"returns an integer. For example:"
22532247msgstr ""
22542248"將一個整數轉變為一個前綴為 \" 0o\" 的八進位制字串。回傳結果是一個有效的 "
2255- "Python 運算式。如果 *x * 不是 Python 的 :class:`int` 物件,那它需要定義 :meth:"
2249+ "Python 運算式。如果 *integer * 不是 Python 的 :class:`int` 物件,那它需要定義 :meth:"
22562250"`~object.__index__` method 回傳一個整數。舉例來說:"
22572251
22582252#: ../../library/functions.rst:1311
0 commit comments