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
192697e3
Kaydet (Commit)
192697e3
authored
Şub 09, 2016
tarafından
Martin Panter
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Issue #26045: Merge http.client error addition from 3.5
üst
d0c1f774
44391481
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
2 deletions
+20
-2
client.py
Lib/http/client.py
+16
-1
test_httplib.py
Lib/test/test_httplib.py
+1
-1
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/http/client.py
Dosyayı görüntüle @
192697e3
...
...
@@ -146,6 +146,21 @@ _is_illegal_header_value = re.compile(rb'\n(?![ \t])|\r(?![ \t\n])').search
_METHODS_EXPECTING_BODY
=
{
'PATCH'
,
'POST'
,
'PUT'
}
def
_encode
(
data
,
name
=
'data'
):
"""Call data.encode("latin-1") but show a better error message."""
try
:
return
data
.
encode
(
"latin-1"
)
except
UnicodeEncodeError
as
err
:
raise
UnicodeEncodeError
(
err
.
encoding
,
err
.
object
,
err
.
start
,
err
.
end
,
"
%
s (
%.20
r) is not valid Latin-1. Use
%
s.encode('utf-8') "
"if you want to send it encoded in UTF-8."
%
(
name
.
title
(),
data
[
err
.
start
:
err
.
end
],
name
))
from
None
class
HTTPMessage
(
email
.
message
.
Message
):
# XXX The only usage of this method is in
# http.server.CGIHTTPRequestHandler. Maybe move the code there so
...
...
@@ -1173,7 +1188,7 @@ class HTTPConnection:
if
isinstance
(
body
,
str
):
# RFC 2616 Section 3.7.1 says that text default has a
# default charset of iso-8859-1.
body
=
body
.
encode
(
'iso-8859-1
'
)
body
=
_encode
(
body
,
'body
'
)
self
.
endheaders
(
body
)
def
getresponse
(
self
):
...
...
Lib/test/test_httplib.py
Dosyayı görüntüle @
192697e3
...
...
@@ -1042,7 +1042,7 @@ class OfflineTest(TestCase):
# intentionally omitted for simplicity
blacklist
=
{
"HTTPMessage"
,
"parse_headers"
}
for
name
in
dir
(
client
):
if
name
in
blacklist
:
if
name
.
startswith
(
"_"
)
or
name
in
blacklist
:
continue
module_object
=
getattr
(
client
,
name
)
if
getattr
(
module_object
,
"__module__"
,
None
)
==
"http.client"
:
...
...
Misc/NEWS
Dosyayı görüntüle @
192697e3
...
...
@@ -170,6 +170,9 @@ Core and Builtins
Library
-------
-
Issue
#
26045
:
Add
UTF
-
8
suggestion
to
error
message
when
posting
a
non
-
Latin
-
1
string
with
http
.
client
.
-
Issue
#
26039
:
Added
zipfile
.
ZipInfo
.
from_file
()
and
zipinfo
.
ZipInfo
.
is_dir
().
Patch
by
Thomas
Kluyver
.
...
...
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