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
fbacaf72
Kaydet (Commit)
fbacaf72
authored
Eki 01, 2001
tarafından
Skip Montanaro
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
approximately double dump performance by moving import of cgi.escape back to
top level.
üst
419abdaf
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
6 deletions
+4
-6
xmlrpclib.py
Lib/xmlrpclib.py
+4
-6
No files found.
Lib/xmlrpclib.py
Dosyayı görüntüle @
fbacaf72
...
...
@@ -136,6 +136,7 @@ Exported functions:
import
re
,
string
,
time
,
operator
from
types
import
*
from
cgi
import
escape
as
_escape
try
:
unicode
...
...
@@ -472,15 +473,13 @@ class Marshaller:
dispatch
[
FloatType
]
=
dump_double
def
dump_string
(
self
,
value
):
from
cgi
import
escape
self
.
write
(
"<value><string>
%
s</string></value>
\n
"
%
escape
(
value
))
self
.
write
(
"<value><string>
%
s</string></value>
\n
"
%
_escape
(
value
))
dispatch
[
StringType
]
=
dump_string
if
unicode
:
def
dump_unicode
(
self
,
value
):
value
=
value
.
encode
(
self
.
encoding
)
from
cgi
import
escape
self
.
write
(
"<value><string>
%
s</string></value>
\n
"
%
escape
(
value
))
self
.
write
(
"<value><string>
%
s</string></value>
\n
"
%
_escape
(
value
))
dispatch
[
UnicodeType
]
=
dump_unicode
def
container
(
self
,
value
):
...
...
@@ -513,8 +512,7 @@ class Marshaller:
write
(
"<member>
\n
"
)
if
type
(
k
)
is
not
StringType
:
raise
TypeError
,
"dictionary key must be string"
from
cgi
import
escape
write
(
"<name>
%
s</name>
\n
"
%
escape
(
k
))
write
(
"<name>
%
s</name>
\n
"
%
_escape
(
k
))
self
.
__dump
(
v
)
write
(
"</member>
\n
"
)
write
(
"</struct></value>
\n
"
)
...
...
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