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
93dfee1d
Kaydet (Commit)
93dfee1d
authored
Eki 30, 2011
tarafından
Florent Xicluna
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #13293: Better error message when trying to marshal bytes using xmlrpc.client.
üst
c4fec937
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
9 deletions
+4
-9
client.py
Lib/xmlrpc/client.py
+1
-9
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/xmlrpc/client.py
Dosyayı görüntüle @
93dfee1d
...
...
@@ -503,9 +503,7 @@ class Marshaller:
f
=
self
.
dispatch
[
type
(
value
)]
except
KeyError
:
# check if this object can be marshalled as a structure
try
:
value
.
__dict__
except
:
if
not
hasattr
(
value
,
'__dict__'
):
raise
TypeError
(
"cannot marshal
%
s objects"
%
type
(
value
))
# check if this class is a sub-class of a basic type,
# because we don't know how to marshal these types
...
...
@@ -553,12 +551,6 @@ class Marshaller:
write
(
"</double></value>
\n
"
)
dispatch
[
float
]
=
dump_double
def
dump_string
(
self
,
value
,
write
,
escape
=
escape
):
write
(
"<value><string>"
)
write
(
escape
(
value
))
write
(
"</string></value>
\n
"
)
dispatch
[
bytes
]
=
dump_string
def
dump_unicode
(
self
,
value
,
write
,
escape
=
escape
):
write
(
"<value><string>"
)
write
(
escape
(
value
))
...
...
Misc/NEWS
Dosyayı görüntüle @
93dfee1d
...
...
@@ -63,6 +63,9 @@ Core and Builtins
Library
-------
- Issue #13293: Better error message when trying to marshal bytes using
xmlrpc.client.
- Issue #13291: NameError in xmlrpc package.
- Issue #13258: Use callable() built-in in the standard library.
...
...
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