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
1d63c9f1
Kaydet (Commit)
1d63c9f1
authored
Şub 02, 2003
tarafından
Tim Peters
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
cPickle support for TUPLE[123]. Incidentally plugged several undetected
overflow holes in Pdata_grow().
üst
9af6968b
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
40 additions
and
7 deletions
+40
-7
pickle.py
Lib/pickle.py
+9
-7
pickletester.py
Lib/test/pickletester.py
+31
-0
cPickle.c
Modules/cPickle.c
+0
-0
No files found.
Lib/pickle.py
Dosyayı görüntüle @
1d63c9f1
...
...
@@ -621,8 +621,11 @@ class Pickler:
proto
=
self
.
proto
n
=
len
(
obj
)
if
n
==
0
and
proto
:
write
(
EMPTY_TUPLE
)
if
n
==
0
:
if
proto
:
write
(
EMPTY_TUPLE
)
else
:
write
(
MARK
+
TUPLE
)
return
save
=
self
.
save
...
...
@@ -639,13 +642,13 @@ class Pickler:
self
.
memoize
(
obj
)
return
# proto 0
,
or proto 1 and tuple isn't empty, or proto > 1 and tuple
# proto 0 or proto 1 and tuple isn't empty, or proto > 1 and tuple
# has more than 3 elements.
write
(
MARK
)
for
element
in
obj
:
save
(
element
)
if
n
and
id
(
obj
)
in
memo
:
if
id
(
obj
)
in
memo
:
# Subtle. d was not in memo when we entered save_tuple(), so
# the process of saving the tuple's elements must have saved
# the tuple itself: the tuple is recursive. The proper action
...
...
@@ -660,10 +663,9 @@ class Pickler:
write
(
POP
*
(
n
+
1
)
+
get
)
return
# No recursion
(including the empty-tuple case for protocol 0)
.
# No recursion.
self
.
write
(
TUPLE
)
if
obj
:
# No need to memoize empty tuple
self
.
memoize
(
obj
)
self
.
memoize
(
obj
)
dispatch
[
TupleType
]
=
save_tuple
...
...
Lib/test/pickletester.py
Dosyayı görüntüle @
1d63c9f1
...
...
@@ -484,6 +484,27 @@ class AbstractPickleTests(unittest.TestCase):
self
.
assertEqual
(
x
,
y
)
def
test_short_tuples
(
self
):
# Map (proto, len(tuple)) to expected opcode.
expected_opcode
=
{(
0
,
0
):
pickle
.
TUPLE
,
(
0
,
1
):
pickle
.
TUPLE
,
(
0
,
2
):
pickle
.
TUPLE
,
(
0
,
3
):
pickle
.
TUPLE
,
(
0
,
4
):
pickle
.
TUPLE
,
(
1
,
0
):
pickle
.
EMPTY_TUPLE
,
(
1
,
1
):
pickle
.
TUPLE
,
(
1
,
2
):
pickle
.
TUPLE
,
(
1
,
3
):
pickle
.
TUPLE
,
(
1
,
4
):
pickle
.
TUPLE
,
(
2
,
0
):
pickle
.
EMPTY_TUPLE
,
(
2
,
1
):
pickle
.
TUPLE1
,
(
2
,
2
):
pickle
.
TUPLE2
,
(
2
,
3
):
pickle
.
TUPLE3
,
(
2
,
4
):
pickle
.
TUPLE
,
}
all_tuple_opcodes
=
(
pickle
.
TUPLE
,
pickle
.
EMPTY_TUPLE
,
pickle
.
TUPLE1
,
pickle
.
TUPLE2
,
pickle
.
TUPLE3
)
a
=
()
b
=
(
1
,)
c
=
(
1
,
2
)
...
...
@@ -495,6 +516,16 @@ class AbstractPickleTests(unittest.TestCase):
y
=
self
.
loads
(
s
)
self
.
assertEqual
(
x
,
y
,
(
proto
,
x
,
s
,
y
))
# Verify that the protocol-correct tuple-building opcode
# was generated.
expected
=
expected_opcode
[
proto
,
len
(
x
)]
for
opcode
in
s
:
if
opcode
in
all_tuple_opcodes
:
self
.
assertEqual
(
expected
,
opcode
)
break
else
:
self
.
fail
(
"didn't find a tuple-building opcode in pickle"
)
def
test_singletons
(
self
):
for
proto
in
protocols
:
for
x
in
None
,
False
,
True
:
...
...
Modules/cPickle.c
Dosyayı görüntüle @
1d63c9f1
This diff is collapsed.
Click to expand it.
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