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
abe2c62b
Kaydet (Commit)
abe2c62b
authored
Eki 15, 2001
tarafından
Jeremy Hylton
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Use cStringIO when available.
Remove test code. It's available in Lib/test/picklertester.py.
üst
2ef1b8fd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
36 deletions
+4
-36
pickle.py
Lib/pickle.py
+4
-36
No files found.
Lib/pickle.py
Dosyayı görüntüle @
abe2c62b
...
...
@@ -958,7 +958,10 @@ class _EmptyClass:
# Shorthands
from
StringIO
import
StringIO
try
:
from
cStringIO
import
StringIO
except
ImportError
:
from
StringIO
import
StringIO
def
dump
(
object
,
file
,
bin
=
0
):
Pickler
(
file
,
bin
)
.
dump
(
object
)
...
...
@@ -974,38 +977,3 @@ def load(file):
def
loads
(
str
):
file
=
StringIO
(
str
)
return
Unpickler
(
file
)
.
load
()
# The rest is used for testing only
class
C
:
def
__cmp__
(
self
,
other
):
return
cmp
(
self
.
__dict__
,
other
.
__dict__
)
def
test
():
fn
=
'out'
c
=
C
()
c
.
foo
=
1
c
.
bar
=
2
x
=
[
0
,
1
,
2
,
3
]
y
=
(
'abc'
,
'abc'
,
c
,
c
)
x
.
append
(
y
)
x
.
append
(
y
)
x
.
append
(
5
)
f
=
open
(
fn
,
'w'
)
F
=
Pickler
(
f
)
F
.
dump
(
x
)
f
.
close
()
f
=
open
(
fn
,
'r'
)
U
=
Unpickler
(
f
)
x2
=
U
.
load
()
print
x
print
x2
print
x
==
x2
print
map
(
id
,
x
)
print
map
(
id
,
x2
)
print
F
.
memo
print
U
.
memo
if
__name__
==
'__main__'
:
test
()
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