@@ -11,7 +11,7 @@ msgid ""
1111msgstr ""
1212"Project-Id-Version :Python 3.12\n "
1313"Report-Msgid-Bugs-To :\n "
14- "POT-Creation-Date :2023-07-17 17:39+0800 \n "
14+ "POT-Creation-Date :2023-12-27 00:03+0000 \n "
1515"PO-Revision-Date :2023-08-01 12:53+0800\n "
1616"Last-Translator :Matt Wang <mattwang44@gmail.com>\n "
1717"Language-Team :Chinese - TAIWAN (https://github.com/python/python-docs-zh- "
@@ -43,14 +43,15 @@ msgstr ""
4343"善。"
4444
4545#: ../../library/bisect.rst:19
46+ #, fuzzy
4647msgid ""
4748"The module is called :mod:`bisect` because it uses a basic bisection "
4849"algorithm to do its work. Unlike other bisection tools that search for a "
4950"specific value, the functions in this module are designed to locate an "
50- "insertion point. Accordingly, the functions never call an :meth:`__eq__` "
51- "method to determine whether a value has been found. Instead, the functions "
52- "only call the :meth:`__lt__` method and will return an insertion point "
53- "between values in an array."
51+ "insertion point. Accordingly, the functions never call an :meth:`~object. "
52+ "__eq__` method to determine whether a value has been found. Instead, the "
53+ "functions only call the :meth:`~object. __lt__` method and will return an "
54+ "insertion point between values in an array."
5455msgstr ""
5556"這個模組被稱為 :mod:`bisect` 是因為它使用基本二分演算法來完成其工作。不像其它"
5657"搜尋特定值的二分法工具,本模組中的函式旨在定位插入點。因此,這些函式永遠不會"
@@ -131,9 +132,10 @@ msgid "Insert *x* in *a* in sorted order."
131132msgstr "將元素 *x* 插入 list *a*,並維持順序。"
132133
133134#: ../../library/bisect.rst:75
135+ #, fuzzy
134136msgid ""
135137"This function first runs :py:func:`~bisect.bisect_left` to locate an "
136- "insertion point. Next, it runs the :meth:`insert` method on *a* to insert "
138+ "insertion point. Next, it runs the :meth:`! insert` method on *a* to insert "
137139"*x* at the appropriate position to maintain sort order."
138140msgstr ""
139141"此函式先使用 :py:func:`~bisect.bisect_left` 搜索插入位置,接著用 :meth:"
@@ -161,9 +163,10 @@ msgstr ""
161163"面(右邊)。"
162164
163165#: ../../library/bisect.rst:95
166+ #, fuzzy
164167msgid ""
165168"This function first runs :py:func:`~bisect.bisect_right` to locate an "
166- "insertion point. Next, it runs the :meth:`insert` method on *a* to insert "
169+ "insertion point. Next, it runs the :meth:`! insert` method on *a* to insert "
167170"*x* at the appropriate position to maintain sort order."
168171msgstr ""
169172"此函式先使用 :py:func:`~bisect.bisect_right` 搜索插入位置,接著用 :meth:"