7
7
msgstr ""
8
8
"Project-Id-Version :Python 3.10\n "
9
9
"Report-Msgid-Bugs-To :\n "
10
- "POT-Creation-Date :2021 -10-26 16:47 +0000\n "
10
+ "POT-Creation-Date :2022 -10-04 00:24 +0000\n "
11
11
"PO-Revision-Date :2018-05-23 16:03+0000\n "
12
12
"Last-Translator :Adrian Liaw <adrianliaw2000@gmail.com>\n "
13
13
"Language-Team :Chinese - TAIWAN (https://github.com/python/python-docs-zh- "
@@ -28,7 +28,7 @@ msgstr "**原始碼:**\\ :source:`Lib/http/client.py`"
28
28
29
29
#: ../../library/http.client.rst:17
30
30
msgid ""
31
- "This module defines classeswhich implement the client side of the HTTP and "
31
+ "This module defines classesthat implement the client side of the HTTP and "
32
32
"HTTPS protocols. It is normally not used directly --- the module :mod:"
33
33
"`urllib.request` uses it to handle URLs that use HTTP and HTTPS."
34
34
msgstr ""
@@ -52,7 +52,7 @@ msgstr ""
52
52
#: ../../library/http.client.rst:37
53
53
msgid ""
54
54
"An :class:`HTTPConnection` instance represents one transaction with an HTTP "
55
- "server. It should be instantiated passing it a host and optional port "
55
+ "server. It should be instantiatedby passing it a host and optional port "
56
56
"number. If no port number is passed, the port is extracted from the host "
57
57
"string if it has the form ``host:port``, else the default HTTP port (80) is "
58
58
"used. If the optional *timeout* parameter is given, blocking operations "
@@ -76,7 +76,7 @@ msgstr "新增 *source_address*\\ 。"
76
76
#: ../../library/http.client.rst:60
77
77
msgid ""
78
78
"The *strict* parameter was removed. HTTP 0.9-style\" Simple Responses\" are "
79
- "not longer supported."
79
+ "no longer supported."
80
80
msgstr ""
81
81
82
82
#: ../../library/http.client.rst:64
@@ -512,7 +512,7 @@ msgstr ""
512
512
msgid ""
513
513
"Return the value of the header *name*, or *default* if there is no header "
514
514
"matching *name*. If there is more than one header with the name *name*, "
515
- "return all of the values joined by ', '. If' default' is any iterable other "
515
+ "return all of the values joined by ', '. If* default* is any iterable other "
516
516
"than a single string, its elements are similarly returned joined by commas."
517
517
msgstr ""
518
518
@@ -593,24 +593,24 @@ msgid ""
593
593
msgstr ""
594
594
595
595
#: ../../library/http.client.rst:579
596
- msgid "Here is an example session thatshows how to ``POST``requests ::"
596
+ msgid "Here is an example session thatuses the ``POST``method ::"
597
597
msgstr ""
598
598
599
599
#: ../../library/http.client.rst:595
600
600
msgid ""
601
- "Client side`` HTTP PUT`` requests are very similar to ``POST`` requests. The "
602
- "difference lies only the server side where HTTPserver will allow resources "
603
- "to be created via ``PUT``request . It should be noted that custom HTTP "
604
- "methods are also handled in :class:`urllib.request.Request` by setting the "
605
- "appropriate method attribute. Here is an example session thatshows how to "
606
- "send a ``PUT``request using http.client ::"
601
+ "Client side HTTP`` PUT`` requests are very similar to ``POST`` requests. The "
602
+ "difference lies onlyon the server side where HTTPservers will allow "
603
+ "resources to be created via ``PUT``requests . It should be noted that custom "
604
+ "HTTP methods are also handled in :class:`urllib.request.Request` by setting "
605
+ "the appropriate method attribute. Here is an example session thatuses the "
606
+ "``PUT``method ::"
607
607
msgstr ""
608
608
609
- #: ../../library/http.client.rst:617
609
+ #: ../../library/http.client.rst:616
610
610
msgid "HTTPMessage Objects"
611
611
msgstr "HTTPMessage 物件"
612
612
613
- #: ../../library/http.client.rst:619
613
+ #: ../../library/http.client.rst:618
614
614
msgid ""
615
615
"An :class:`http.client.HTTPMessage` instance holds the headers from an HTTP "
616
616
"response. It is implemented using the :class:`email.message.Message` class."