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
51b71981
Kaydet (Commit)
51b71981
authored
Eyl 22, 2011
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #12931: xmlrpclib now encodes Unicode URI to ISO-8859-1, instead of
failing with a UnicodeDecodeError.
üst
2156594d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
0 deletions
+9
-0
test_xmlrpc.py
Lib/test/test_xmlrpc.py
+3
-0
xmlrpclib.py
Lib/xmlrpclib.py
+3
-0
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/test/test_xmlrpc.py
Dosyayı görüntüle @
51b71981
...
...
@@ -472,6 +472,9 @@ class SimpleServerTestCase(BaseServerTestCase):
# protocol error; provide additional information in test output
self
.
fail
(
"
%
s
\n
%
s"
%
(
e
,
getattr
(
e
,
"headers"
,
""
)))
def
test_unicode_host
(
self
):
server
=
xmlrpclib
.
ServerProxy
(
u"http://
%
s:
%
d/RPC2"
%
(
ADDR
,
PORT
))
self
.
assertEqual
(
server
.
add
(
"a"
,
u"
\xe9
"
),
u"a
\xe9
"
)
# [ch] The test 404 is causing lots of false alarms.
def
XXXtest_404
(
self
):
...
...
Lib/xmlrpclib.py
Dosyayı görüntüle @
51b71981
...
...
@@ -1539,6 +1539,9 @@ class ServerProxy:
allow_none
=
0
,
use_datetime
=
0
):
# establish a "logical" server connection
if
isinstance
(
uri
,
unicode
):
uri
=
uri
.
encode
(
'ISO-8859-1'
)
# get the url
import
urllib
type
,
uri
=
urllib
.
splittype
(
uri
)
...
...
Misc/NEWS
Dosyayı görüntüle @
51b71981
...
...
@@ -47,6 +47,9 @@ Core and Builtins
Library
-------
- Issue #12931: xmlrpclib now encodes Unicode URI to ISO-8859-1, instead of
failing with a UnicodeDecodeError.
- Issue #8933: distutils'
PKG
-
INFO
files
will
now
correctly
report
Metadata
-
Version
:
1.1
instead
of
1.0
if
a
Classifier
or
Download
-
URL
field
is
present
.
...
...
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