@@ -8,7 +8,7 @@ msgstr ""
8
8
"Project-Id-Version :Python 3.7\n "
9
9
"Report-Msgid-Bugs-To :\n "
10
10
"POT-Creation-Date :2018-08-23 20:52+0800\n "
11
- "PO-Revision-Date :2018-09-30 10:43 +0800\n "
11
+ "PO-Revision-Date :2018-10-04 17:44 +0800\n "
12
12
"Last-Translator :Adrian Liaw <adrianliaw2000@gmail.com>\n "
13
13
"Language-Team :Chinese - TAIWAN (https://github.com/python/python-docs-zh- "
14
14
"tw)\n "
@@ -322,15 +322,19 @@ msgid ""
322
322
"iterable is empty). Equivalent to::"
323
323
msgstr ""
324
324
"如果 *iterable* 的所有元素皆為 True(或 iterable 為空),返回 ``True`` 。等價"
325
- "於:"
325
+ "於:\n"
326
+ "\n"
327
+ "::"
326
328
327
329
#: ../../library/functions.rst:64
328
330
msgid ""
329
331
"Return ``True`` if any element of the *iterable* is true. If the iterable "
330
332
"is empty, return ``False``. Equivalent to::"
331
333
msgstr ""
332
334
"如果 *iterable* 的任一元素為 True,返回 ``True`` 。如果 iterable 為空,返回 "
333
- "``False``。等價於:"
335
+ "``False``。等價於:\n"
336
+ "\n"
337
+ "::"
334
338
335
339
#: ../../library/functions.rst:76
336
340
msgid ""
@@ -525,15 +529,17 @@ msgid ""
525
529
"idiom::"
526
530
msgstr ""
527
531
"一個類別方法把自己的類別作為第一個引數,就像一個實例方法把實例自己作為第一個"
528
- "引數。請用以下習慣來宣告類別方法:"
532
+ "引數。請用以下習慣來宣告類別方法:\n"
533
+ "\n"
534
+ "::"
529
535
530
536
#: ../../library/functions.rst:213
531
537
msgid ""
532
538
"The ``@classmethod`` form is a function :term:`decorator` -- see the "
533
539
"description of function definitions in :ref:`function` for details."
534
540
msgstr ""
535
- "``@classmethod`` 語法是一個函式 :term:`decorator` — 參見 :ref:`function`中關 "
536
- "於函式定義的詳細介紹 。"
541
+ "``@classmethod`` 語法是一個函式 :term:`decorator` — 參見 :ref:`function`中 "
542
+ "關於函式定義的詳細介紹 。"
537
543
538
544
#: ../../library/functions.rst:216
539
545
msgid ""
@@ -630,7 +636,7 @@ msgstr ""
630
636
"引數 *optimize* 用來指定編譯器的最佳化級別;預設值 ``-1`` 選擇與直譯器的 :"
631
637
"option:`-O` 選項相同的最佳化級別。其他級別為 ``0`` (沒有最佳化;"
632
638
"``__debug__`` 為 True)、``1`` (斷言被刪除, ``__debug__`` 為 False)或 "
633
- "``2``(文件字串也被刪除)。"
639
+ "``2`` (文件字串也被刪除)。"
634
640
635
641
#: ../../library/functions.rst:266
636
642
msgid ""
@@ -856,7 +862,10 @@ msgstr ""
856
862
857
863
#: ../../library/functions.rst:421
858
864
msgid "Equivalent to::"
859
- msgstr "等價於:"
865
+ msgstr ""
866
+ "等價於:\n"
867
+ "\n"
868
+ "::"
860
869
861
870
#: ../../library/functions.rst:432
862
871
msgid ""
@@ -1076,7 +1085,10 @@ msgstr "如果沒有引數,則返回 ``0.0`` 。"
1076
1085
1077
1086
#: ../../library/functions.rst:564
1078
1087
msgid "Examples::"
1079
- msgstr "例如:"
1088
+ msgstr ""
1089
+ "例如:\n"
1090
+ "\n"
1091
+ "::"
1080
1092
1081
1093
#: ../../library/functions.rst:577
1082
1094
msgid "The float type is described in :ref:`typesnumeric`."
@@ -1270,7 +1282,9 @@ msgid ""
1270
1282
msgstr ""
1271
1283
"如果有提供 *prompt* 引數,則將其寫入標準輸出,末尾不帶換行符。接下來,該函式"
1272
1284
"從輸入中讀取一行,將其轉換為字串(去除末尾的換行符)並返回。當讀取到 EOF 時,"
1273
- "則觸發 :exc:`EOFError`。例如:"
1285
+ "則觸發 :exc:`EOFError`。例如:\n"
1286
+ "\n"
1287
+ "::"
1274
1288
1275
1289
#: ../../library/functions.rst:732
1276
1290
msgid ""
@@ -1396,7 +1410,9 @@ msgid ""
1396
1410
"string::"
1397
1411
msgstr ""
1398
1412
":func:`iter` 的第二種形式的一個有用的應用是將檔案讀到特定行。在下面的例子中,"
1399
- "我們將讀取檔案,直到 :meth:`~io.TextIOBase.readline` 方法返回一個空字串:"
1413
+ "我們將讀取檔案,直到 :meth:`~io.TextIOBase.readline` 方法返回一個空字串:\n"
1414
+ "\n"
1415
+ "::"
1400
1416
1401
1417
#: ../../library/functions.rst:823
1402
1418
msgid ""
@@ -1851,7 +1867,9 @@ msgid ""
1851
1867
"`os.open` function to open a file relative to a given directory::"
1852
1868
msgstr ""
1853
1869
"下面的範例使用 :func:`os.open` 函式返回值當作 :ref:`dir_fd <dir_fd>` 的參數,"
1854
- "從給定的目錄中用相對路徑開啟檔案:"
1870
+ "從給定的目錄中用相對路徑開啟檔案:\n"
1871
+ "\n"
1872
+ "::"
1855
1873
1856
1874
#: ../../library/functions.rst:1124
1857
1875
msgid ""