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
c1764dd3
Kaydet (Commit)
c1764dd3
authored
Ara 28, 2013
tarafından
Antoine Pitrou
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #19648: implement empty tests in pickletester. Patch by Gennadiy Zlobin.
üst
473f45b4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
2 deletions
+11
-2
pickletester.py
Lib/test/pickletester.py
+10
-2
ACKS
Misc/ACKS
+1
-0
No files found.
Lib/test/pickletester.py
Dosyayı görüntüle @
c1764dd3
...
@@ -812,10 +812,18 @@ class AbstractPickleTests(unittest.TestCase):
...
@@ -812,10 +812,18 @@ class AbstractPickleTests(unittest.TestCase):
self
.
assertEqual
(
self
.
dumps
(
1.2
,
0
)[
0
:
3
],
b
'F1.'
)
self
.
assertEqual
(
self
.
dumps
(
1.2
,
0
)[
0
:
3
],
b
'F1.'
)
def
test_reduce
(
self
):
def
test_reduce
(
self
):
pass
for
proto
in
protocols
:
inst
=
AAA
()
dumped
=
self
.
dumps
(
inst
,
proto
)
loaded
=
self
.
loads
(
dumped
)
self
.
assertEqual
(
loaded
,
REDUCE_A
)
def
test_getinitargs
(
self
):
def
test_getinitargs
(
self
):
pass
for
proto
in
protocols
:
inst
=
initarg
(
1
,
2
)
dumped
=
self
.
dumps
(
inst
,
proto
)
loaded
=
self
.
loads
(
dumped
)
self
.
assert_is_copy
(
inst
,
loaded
)
def
test_pop_empty_stack
(
self
):
def
test_pop_empty_stack
(
self
):
# Test issue7455
# Test issue7455
...
...
Misc/ACKS
Dosyayı görüntüle @
c1764dd3
...
@@ -1456,4 +1456,5 @@ Uwe Zessin
...
@@ -1456,4 +1456,5 @@ Uwe Zessin
Cheng Zhang
Cheng Zhang
Kai Zhu
Kai Zhu
Tarek Ziadé
Tarek Ziadé
Gennadiy Zlobin
Peter Åstrand
Peter Åstrand
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