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
3c7e9280
Kaydet (Commit)
3c7e9280
authored
Agu 13, 2011
tarafından
Antoine Pitrou
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #12744: Fix inefficient representation of integers
between 2**31 and 2**63 on systems with a 64-bit C "long".
üst
780199e6
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
1 deletion
+14
-1
pickletester.py
Lib/test/pickletester.py
+10
-0
NEWS
Misc/NEWS
+3
-0
_pickle.c
Modules/_pickle.c
+1
-1
No files found.
Lib/test/pickletester.py
Dosyayı görüntüle @
3c7e9280
...
...
@@ -1118,6 +1118,16 @@ class AbstractPickleTests(unittest.TestCase):
empty
=
self
.
loads
(
b
'
\x80\x03
U
\x00
q
\x00
.'
,
encoding
=
'koi8-r'
)
self
.
assertEqual
(
empty
,
''
)
def
test_int_pickling_efficiency
(
self
):
# Test compacity of int representation (see issue #12744)
for
proto
in
protocols
:
sizes
=
[
len
(
self
.
dumps
(
2
**
n
,
proto
))
for
n
in
range
(
70
)]
# the size function is monotonous
self
.
assertEqual
(
sorted
(
sizes
),
sizes
)
if
proto
>=
2
:
self
.
assertLessEqual
(
sizes
[
-
1
],
14
)
# Test classes for reduce_ex
class
REX_one
(
object
):
...
...
Misc/NEWS
Dosyayı görüntüle @
3c7e9280
...
...
@@ -254,6 +254,9 @@ Core and Builtins
Library
-------
- Issue #12744: Fix inefficient representation of integers between 2**31 and
2**63 on systems with a 64-bit C "long".
- Issue #12646: Add an '
eof
' attribute to zlib.Decompress, to make it easier to
detect truncated input streams.
...
...
Modules/_pickle.c
Dosyayı görüntüle @
3c7e9280
...
...
@@ -1540,7 +1540,7 @@ save_long(PicklerObject *self, PyObject *obj)
/* out of range for int pickling */
PyErr_Clear
();
}
else
else
if
(
val
<=
0x7fffffffL
&&
val
>=
-
0x80000000L
)
return
save_int
(
self
,
val
);
if
(
self
->
proto
>=
2
)
{
...
...
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