Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
461c416d
Kaydet (Commit)
461c416d
authored
Nis 04, 2019
tarafından
Matt Houglum
Kaydeden (comit)
Serhiy Storchaka
Nis 04, 2019
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-36522: Print all values for headers with multiple values. (GH-12681)
üst
cb0748d3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
4 deletions
+7
-4
client.py
Lib/http/client.py
+2
-2
test_httplib.py
Lib/test/test_httplib.py
+4
-2
2019-04-03-20-46-47.bpo-36522.g5x3By.rst
...S.d/next/Library/2019-04-03-20-46-47.bpo-36522.g5x3By.rst
+1
-0
No files found.
Lib/http/client.py
Dosyayı görüntüle @
461c416d
...
...
@@ -320,8 +320,8 @@ class HTTPResponse(io.BufferedIOBase):
self
.
headers
=
self
.
msg
=
parse_headers
(
self
.
fp
)
if
self
.
debuglevel
>
0
:
for
hdr
in
self
.
headers
:
print
(
"header:"
,
hdr
+
":"
,
self
.
headers
.
get
(
hdr
)
)
for
hdr
,
val
in
self
.
headers
.
items
()
:
print
(
"header:"
,
hdr
+
":"
,
val
)
# are we using the chunked-style of transfer encoding?
tr_enc
=
self
.
headers
.
get
(
"transfer-encoding"
)
...
...
Lib/test/test_httplib.py
Dosyayı görüntüle @
461c416d
...
...
@@ -348,7 +348,8 @@ class HeaderTests(TestCase):
body
=
(
b
'HTTP/1.1 200 OK
\r\n
'
b
'First: val
\r\n
'
b
'Second: val
\r\n
'
b
'Second: val1
\r\n
'
b
'Second: val2
\r\n
'
)
sock
=
FakeSocket
(
body
)
resp
=
client
.
HTTPResponse
(
sock
,
debuglevel
=
1
)
...
...
@@ -357,7 +358,8 @@ class HeaderTests(TestCase):
lines
=
output
.
getvalue
()
.
splitlines
()
self
.
assertEqual
(
lines
[
0
],
"reply: 'HTTP/1.1 200 OK
\\
r
\\
n'"
)
self
.
assertEqual
(
lines
[
1
],
"header: First: val"
)
self
.
assertEqual
(
lines
[
2
],
"header: Second: val"
)
self
.
assertEqual
(
lines
[
2
],
"header: Second: val1"
)
self
.
assertEqual
(
lines
[
3
],
"header: Second: val2"
)
class
TransferEncodingTest
(
TestCase
):
...
...
Misc/NEWS.d/next/Library/2019-04-03-20-46-47.bpo-36522.g5x3By.rst
0 → 100644
Dosyayı görüntüle @
461c416d
If *debuglevel* is set to >0 in :mod:`http.client`, print all values for headers with multiple values for the same header name. Patch by Matt Houglum.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment