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
5449e084
Kaydet (Commit)
5449e084
authored
Eki 17, 2001
tarafından
Skip Montanaro
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
test for int and long int overflow (allows operation on 64-bit platforms)
closes patch 470254
üst
07227d1e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
2 deletions
+11
-2
xmlrpclib.py
Lib/xmlrpclib.py
+11
-2
No files found.
Lib/xmlrpclib.py
Dosyayı görüntüle @
5449e084
...
...
@@ -34,6 +34,7 @@
# 2001-10-01 fl Remove containers from memo cache when done with them
# 2001-10-01 fl Use faster escape method (80% dumps speedup)
# 2001-10-10 sm Allow long ints to be passed as ints if they don't overflow
# 2001-10-17 sm test for int and long overflow (allows use on 64-bit systems)
#
# Copyright (c) 1999-2001 by Secret Labs AB.
# Copyright (c) 1999-2001 by Fredrik Lundh.
...
...
@@ -144,6 +145,9 @@ def escape(s, replace=string.replace):
s
=
replace
(
s
,
"<"
,
"<"
)
return
replace
(
s
,
">"
,
">"
,)
MAXINT
=
2L
**
31
-
1
MININT
=
-
2L
**
31
if
unicode
:
def
_stringify
(
string
):
# convert to 7-bit ascii if possible
...
...
@@ -462,12 +466,17 @@ class Marshaller:
f
(
self
,
value
)
def
dump_int
(
self
,
value
):
# in case ints are > 32 bits
if
value
>
MAXINT
or
value
<
MININT
:
raise
OverflowError
,
"int exceeds XML-RPC limits"
self
.
write
(
"<value><int>
%
s</int></value>
\n
"
%
value
)
dispatch
[
IntType
]
=
dump_int
def
dump_long
(
self
,
value
):
val
=
int
(
value
)
self
.
write
(
"<value><int>
%
s</int></value>
\n
"
%
val
)
# in case ints are > 32 bits
if
value
>
MAXINT
or
value
<
MININT
:
raise
OverflowError
,
"long int exceeds XML-RPC limits"
self
.
write
(
"<value><int>
%
s</int></value>
\n
"
%
int
(
value
))
dispatch
[
LongType
]
=
dump_long
def
dump_double
(
self
,
value
):
...
...
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