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
7d97d31a
Kaydet (Commit)
7d97d31a
authored
Ock 28, 2003
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
OK, this is really the last one tonight!
NEWFALSE and NEWTRUE.
üst
025bc2fe
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
1 deletion
+19
-1
pickle.py
Lib/pickle.py
+12
-1
pickletester.py
Lib/test/pickletester.py
+7
-0
No files found.
Lib/pickle.py
Dosyayı görüntüle @
7d97d31a
...
...
@@ -356,7 +356,10 @@ class Pickler:
dispatch
[
NoneType
]
=
save_none
def
save_bool
(
self
,
object
):
self
.
write
(
object
and
TRUE
or
FALSE
)
if
self
.
proto
>=
2
:
self
.
write
(
object
and
NEWTRUE
or
NEWFALSE
)
else
:
self
.
write
(
object
and
TRUE
or
FALSE
)
dispatch
[
bool
]
=
save_bool
def
save_int
(
self
,
object
,
pack
=
struct
.
pack
):
...
...
@@ -760,6 +763,14 @@ class Unpickler:
self
.
append
(
None
)
dispatch
[
NONE
]
=
load_none
def
load_false
(
self
):
self
.
append
(
False
)
dispatch
[
NEWFALSE
]
=
load_false
def
load_true
(
self
):
self
.
append
(
True
)
dispatch
[
NEWTRUE
]
=
load_true
def
load_int
(
self
):
data
=
self
.
readline
()
if
data
==
FALSE
[
1
:]:
...
...
Lib/test/pickletester.py
Dosyayı görüntüle @
7d97d31a
...
...
@@ -293,6 +293,13 @@ class AbstractPickleTests(unittest.TestCase):
y
=
self
.
loads
(
s
)
self
.
assertEqual
(
x
,
y
,
(
proto
,
x
,
s
,
y
))
def
test_singletons
(
self
):
for
proto
in
0
,
1
,
2
:
for
x
in
None
,
False
,
True
:
s
=
self
.
dumps
(
x
,
proto
)
y
=
self
.
loads
(
s
)
self
.
assert_
(
x
is
y
,
(
proto
,
x
,
s
,
y
))
class
AbstractPickleModuleTests
(
unittest
.
TestCase
):
def
test_dump_closed_file
(
self
):
...
...
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