@@ -7,7 +7,7 @@ msgstr ""
7
7
"Project-Id-Version : Python 3.13\n "
8
8
"Report-Msgid-Bugs-To : \n "
9
9
"POT-Creation-Date : 2024-12-14 00:14+0000\n "
10
- "PO-Revision-Date : 2024-12-24 18:31 +0800\n "
10
+ "PO-Revision-Date : 2024-12-24 18:49 +0800\n "
11
11
"
Last-Translator :
Liang-Bo Wang <[email protected] >\n "
12
12
"Language-Team : Chinese - TAIWAN (https://github.com/python/python-docs-zh- "
13
13
"tw)\n "
@@ -391,10 +391,10 @@ msgstr ""
391
391
">>> C = cookies.SimpleCookie()\n"
392
392
">>> C[\" fig\" ] = \" newton\" \n"
393
393
">>> C[\" sugar\" ] = \" wafer\" \n"
394
- ">>> print(C) # generate HTTP headers \n"
394
+ ">>> print(C) # 產生 HTTP 標頭 \n"
395
395
"Set-Cookie: fig=newton\n"
396
396
"Set-Cookie: sugar=wafer\n"
397
- ">>> print(C.output()) # same thing \n"
397
+ ">>> print(C.output()) # 同上 \n"
398
398
"Set-Cookie: fig=newton\n"
399
399
"Set-Cookie: sugar=wafer\n"
400
400
">>> C = cookies.SimpleCookie()\n"
@@ -405,8 +405,7 @@ msgstr ""
405
405
">>> print(C.output(attrs=[], header=\" Cookie:\" ))\n"
406
406
"Cookie: rocky=road\n"
407
407
">>> C = cookies.SimpleCookie()\n"
408
- ">>> C.load(\" chips=ahoy; vienna=finger\" ) # load from a string (HTTP "
409
- "header)\n"
408
+ ">>> C.load(\" chips=ahoy; vienna=finger\" ) # 從字串(HTTP 標頭)載入\n"
410
409
">>> print(C)\n"
411
410
"Set-Cookie: chips=ahoy\n"
412
411
"Set-Cookie: vienna=finger\n"
@@ -424,7 +423,7 @@ msgstr ""
424
423
">>> C[\" twix\" ].value\n"
425
424
"'none for you'\n"
426
425
">>> C = cookies.SimpleCookie()\n"
427
- ">>> C[\" number\" ] = 7 # equivalent to C[\" number\" ] = str(7)\n"
426
+ ">>> C[\" number\" ] = 7 # 等同於 C[\" number\" ] = str(7)\n"
428
427
">>> C[\" string\" ] = \" seven\" \n"
429
428
">>> C[\" number\" ].value\n"
430
429
"'7'\n"
0 commit comments