@@ -10,7 +10,7 @@ msgid ""
10
10
msgstr ""
11
11
"Project-Id-Version : Python 3.12\n "
12
12
"Report-Msgid-Bugs-To : \n "
13
- "POT-Creation-Date : 2023-05-09 00:15 +0000\n "
13
+ "POT-Creation-Date : 2023-08-20 15:45 +0000\n "
14
14
"PO-Revision-Date : 2023-02-18 14:48+0800\n "
15
15
"Last-Translator : Adrian Liaw <adrianliaw2000@gmail.com>\n "
16
16
"Language-Team : Chinese - TAIWAN (https://github.com/python/python-docs-zh- "
@@ -796,9 +796,9 @@ msgstr "list 是 :term:`mutable`,這意味著你可以變更它們的內容。
796
796
#: ../../faq/programming.rst:457
797
797
#, fuzzy
798
798
msgid ""
799
- "After the call to :meth:`~list. append`, the content of the mutable object "
800
- "has changed from ``[]`` to ``[10]``. Since both the variables refer to the "
801
- "same object, using either name accesses the modified value ``[10]``."
799
+ "After the call to :meth:`! append`, the content of the mutable object has "
800
+ "changed from ``[]`` to ``[10]``. Since both the variables refer to the same "
801
+ "object, using either name accesses the modified value ``[10]``."
802
802
msgstr ""
803
803
"在呼叫 :meth:`~list.append` 之後,可變物件的內容從 ``[]`` 變成了 ``[10]``。由"
804
804
"於這兩個變數都引用同一個物件,因此使用任一名稱都可以存取修改後的值 "
@@ -2222,9 +2222,8 @@ msgid ""
2222
2222
"an :meth:`~object.__iadd__` magic method, it gets called when the ``+=`` "
2223
2223
"augmented assignment is executed, and its return value is what gets used in "
2224
2224
"the assignment statement; and (b) for lists, :meth:`!__iadd__` is equivalent "
2225
- "to calling :meth:`~list.extend` on the list and returning the list. That's "
2226
- "why we say that for lists, ``+=`` is a \" shorthand\" for :meth:`!list."
2227
- "extend`::"
2225
+ "to calling :meth:`!extend` on the list and returning the list. That's why "
2226
+ "we say that for lists, ``+=`` is a \" shorthand\" for :meth:`!list.extend`::"
2228
2227
msgstr ""
2229
2228
"要了解為什麼會發生這種情況,你需要知道 (a) 如果一個物件實作了一個 :meth:"
2230
2229
"`~object.__iadd__` 魔術方法,它會在執行 ``+=`` 增廣賦值時被呼叫,並且它的回傳"
@@ -2958,8 +2957,9 @@ msgstr ""
2958
2957
"float('NaN') 之類的不等於自身的物件所混淆。"
2959
2958
2960
2959
#: ../../faq/programming.rst:1905
2960
+ #, fuzzy
2961
2961
msgid ""
2962
- "For example, here is the implementation of :meth:`collections.abc.Sequence."
2962
+ "For example, here is the implementation of :meth:`! collections.abc.Sequence."
2963
2963
"__contains__`::"
2964
2964
msgstr ""
2965
2965
"例如,以下是 :meth:`collections.abc.Sequence.__contains__` 的實作:\n"
0 commit comments