@@ -512,7 +512,6 @@ msgid "The parameter is now positional-only."
512512msgstr "現在為僅限位置參數。"
513513
514514#: ../../library/functions.rst:161
515- #, fuzzy
516515msgid ""
517516"This function drops you into the debugger at the call site. Specifically, "
518517"it calls :func:`sys.breakpointhook`, passing ``args`` and ``kws`` straight "
@@ -526,9 +525,9 @@ msgid ""
526525msgstr ""
527526"這個函式將呼叫 :func:`sys.breakpointhook` 函式,並將 ``args`` 和 ``kws`` 傳遞"
528527"給它。這將有效地讓你在特定的呼叫點進入除錯器。預設情況下,``sys."
529- "breakpointhook()`` 呼叫 :func:`pdb.set_trace() ` 不須帶任何引數。這樣的設計是 "
530- "為了方便使用者 ,讓他們不需要額外地導入 :mod:`pdb`模組或輸入太多程式就可以進 "
531- "入除錯器 。然而,可以將 :func:`sys.breakpointhook` 設置為其他函式,並且 :func:"
528+ "breakpointhook()`` 呼叫 :func:`pdb.set_trace` 不須帶任何引數。這樣的設計是為 "
529+ "了方便使用者 ,讓他們不需要額外地導入 :mod:`pdb`模組或輸入太多程式就可以進入 "
530+ "除錯器 。然而,可以將 :func:`sys.breakpointhook` 設置為其他函式,並且 :func:"
532531"`breakpoint` 將自動呼叫該函式,讓你進入所選擇的除錯器。如果無法存取 :func:"
533532"`sys.breakpointhook` 這個函式,則此函式將引發 :exc:`RuntimeError`。"
534533
@@ -2037,7 +2036,6 @@ msgstr ""
20372036"閉,除非 *closefd* 被設為 ``False``。)"
20382037
20392038#: ../../library/functions.rst:1263
2040- #, fuzzy
20412039msgid ""
20422040"*mode* is an optional string that specifies the mode in which the file is "
20432041"opened. It defaults to ``'r'`` which means open for reading in text mode. "
@@ -2055,8 +2053,8 @@ msgstr ""
20552053"案)、唯一性建立 ``'x'``、追加寫入 ``'a'``\\ (在\\ *一些* Unix 系統上,無論"
20562054"當前的檔案指標在什麼位置,*所有* 寫入都會追加到檔案末尾)。在文字模式,如果沒"
20572055"有指定 *encoding*,則根據電腦平臺來決定使用的編碼:呼叫 :func:`locale."
2058- "getencoding() ` 來獲取當前的本地編碼。(要讀取和寫入原始 bytes,請使用二進位制 "
2059- "模式且不要指定 *encoding*。)可用的模式有:"
2056+ "getencoding` 來獲取當前的本地編碼。(要讀取和寫入原始 bytes,請使用二進位制模 "
2057+ "式且不要指定 *encoding*。)可用的模式有:"
20602058
20612059#: ../../library/functions.rst:1280
20622060msgid "Character"