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
9c33cbfb
Kaydet (Commit)
9c33cbfb
authored
Eyl 04, 2009
tarafından
Chris Withers
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixes issue #6838: use a list to accumulate the value instead of repeatedly concatenating strings.
üst
93385857
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
12 deletions
+14
-12
client.py
Lib/http/client.py
+9
-12
NEWS
Misc/NEWS
+5
-0
No files found.
Lib/http/client.py
Dosyayı görüntüle @
9c33cbfb
...
...
@@ -518,10 +518,7 @@ class HTTPResponse(io.RawIOBase):
def
_read_chunked
(
self
,
amt
):
assert
self
.
chunked
!=
_UNKNOWN
chunk_left
=
self
.
chunk_left
value
=
b
""
# XXX This accumulates chunks by repeated string concatenation,
# which is not efficient as the number or size of chunks gets big.
value
=
[]
while
True
:
if
chunk_left
is
None
:
line
=
self
.
fp
.
readline
()
...
...
@@ -534,22 +531,22 @@ class HTTPResponse(io.RawIOBase):
# close the connection as protocol synchronisation is
# probably lost
self
.
close
()
raise
IncompleteRead
(
value
)
raise
IncompleteRead
(
b
''
.
join
(
value
)
)
if
chunk_left
==
0
:
break
if
amt
is
None
:
value
+=
self
.
_safe_read
(
chunk_left
)
value
.
append
(
self
.
_safe_read
(
chunk_left
)
)
elif
amt
<
chunk_left
:
value
+=
self
.
_safe_read
(
amt
)
value
.
append
(
self
.
_safe_read
(
amt
)
)
self
.
chunk_left
=
chunk_left
-
amt
return
value
return
b
''
.
join
(
value
)
elif
amt
==
chunk_left
:
value
+=
self
.
_safe_read
(
amt
)
value
.
append
(
self
.
_safe_read
(
amt
)
)
self
.
_safe_read
(
2
)
# toss the CRLF at the end of the chunk
self
.
chunk_left
=
None
return
value
return
b
''
.
join
(
value
)
else
:
value
+=
self
.
_safe_read
(
chunk_left
)
value
.
append
(
self
.
_safe_read
(
chunk_left
)
)
amt
-=
chunk_left
# we read the whole chunk, get another
...
...
@@ -570,7 +567,7 @@ class HTTPResponse(io.RawIOBase):
# we read everything; close the "file"
self
.
close
()
return
value
return
b
''
.
join
(
value
)
def
_safe_read
(
self
,
amt
):
"""Read the number of bytes requested, compensating for partial reads.
...
...
Misc/NEWS
Dosyayı görüntüle @
9c33cbfb
...
...
@@ -68,6 +68,11 @@ C-API
Library
-------
- Issue #6838: Use a list to accumulate the value instead of
repeatedly concatenating strings in http.client's
HTTPResponse._read_chunked providing a significant speed increase
when downloading large files servend with a Transfer-Encoding of 'chunked'.
- Trying to import a submodule from a module that is not a package, ImportError
should be raised, not AttributeError.
...
...
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