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
3042b5eb
Kaydet (Commit)
3042b5eb
authored
Nis 12, 2013
tarafından
Andrew Svetlov
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Issue #16658: add missing return to HTTPConnection.send().
Patch by Jeff Knupp
üst
7ca49361
7b2c8bb8
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
25 additions
and
1 deletion
+25
-1
client.py
Lib/http/client.py
+1
-1
test_httplib.py
Lib/test/test_httplib.py
+21
-0
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/http/client.py
Dosyayı görüntüle @
3042b5eb
...
...
@@ -864,7 +864,7 @@ class HTTPConnection:
if
encode
:
datablock
=
datablock
.
encode
(
"iso-8859-1"
)
self
.
sock
.
sendall
(
datablock
)
return
try
:
self
.
sock
.
sendall
(
data
)
except
TypeError
:
...
...
Lib/test/test_httplib.py
Dosyayı görüntüle @
3042b5eb
...
...
@@ -373,6 +373,27 @@ class BasicTest(TestCase):
conn
.
send
(
io
.
BytesIO
(
expected
))
self
.
assertEqual
(
expected
,
sock
.
data
)
def
test_send_updating_file
(
self
):
def
data
():
yield
'data'
yield
None
yield
'data_two'
class
UpdatingFile
():
mode
=
'r'
d
=
data
()
def
read
(
self
,
blocksize
=-
1
):
return
self
.
d
.
__next__
()
expected
=
b
'data'
conn
=
client
.
HTTPConnection
(
'example.com'
)
sock
=
FakeSocket
(
""
)
conn
.
sock
=
sock
conn
.
send
(
UpdatingFile
())
self
.
assertEqual
(
sock
.
data
,
expected
)
def
test_send_iter
(
self
):
expected
=
b
'GET /foo HTTP/1.1
\r\n
Host: example.com
\r\n
'
\
b
'Accept-Encoding: identity
\r\n
Content-Length: 11
\r\n
'
\
...
...
Misc/NEWS
Dosyayı görüntüle @
3042b5eb
...
...
@@ -34,6 +34,9 @@ Core and Builtins
Library
-------
-
Issue
#
16658
:
add
missing
return
to
HTTPConnection
.
send
()
Patch
by
Jeff
Knupp
.
-
Issue
#
9556
:
Allowed
specifying
a
time
-
of
-
day
for
a
TimedRotatingFileHandler
to
rotate
.
...
...
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