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
104de66b
Kaydet (Commit)
104de66b
authored
Eyl 29, 2015
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Moved unpickling tests with prepickled data to separate class.
üst
e471ab34
c6b54b45
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
3 deletions
+18
-3
pickletester.py
Lib/test/pickletester.py
+0
-0
test_pickle.py
Lib/test/test_pickle.py
+18
-3
No files found.
Lib/test/pickletester.py
Dosyayı görüntüle @
104de66b
This diff is collapsed.
Click to expand it.
Lib/test/test_pickle.py
Dosyayı görüntüle @
104de66b
...
...
@@ -10,6 +10,7 @@ import sys
import
unittest
from
test
import
support
from
test.pickletester
import
AbstractUnpickleTests
from
test.pickletester
import
AbstractPickleTests
from
test.pickletester
import
AbstractPickleModuleTests
from
test.pickletester
import
AbstractPersistentPicklerTests
...
...
@@ -28,6 +29,16 @@ class PickleTests(AbstractPickleModuleTests):
pass
class
PyUnpicklerTests
(
AbstractUnpickleTests
):
unpickler
=
pickle
.
_Unpickler
def
loads
(
self
,
buf
,
**
kwds
):
f
=
io
.
BytesIO
(
buf
)
u
=
self
.
unpickler
(
f
,
**
kwds
)
return
u
.
load
()
class
PyPicklerTests
(
AbstractPickleTests
):
pickler
=
pickle
.
_Pickler
...
...
@@ -46,7 +57,8 @@ class PyPicklerTests(AbstractPickleTests):
return
u
.
load
()
class
InMemoryPickleTests
(
AbstractPickleTests
,
BigmemPickleTests
):
class
InMemoryPickleTests
(
AbstractPickleTests
,
AbstractUnpickleTests
,
BigmemPickleTests
):
pickler
=
pickle
.
_Pickler
unpickler
=
pickle
.
_Unpickler
...
...
@@ -105,6 +117,9 @@ class PyChainDispatchTableTests(AbstractDispatchTableTests):
if
has_c_implementation
:
class
CUnpicklerTests
(
PyUnpicklerTests
):
unpickler
=
_pickle
.
Unpickler
class
CPicklerTests
(
PyPicklerTests
):
pickler
=
_pickle
.
Pickler
unpickler
=
_pickle
.
Unpickler
...
...
@@ -375,11 +390,11 @@ class CompatPickleTests(unittest.TestCase):
def
test_main
():
tests
=
[
PickleTests
,
PyPicklerTests
,
PyPersPicklerTests
,
tests
=
[
PickleTests
,
Py
UnpicklerTests
,
Py
PicklerTests
,
PyPersPicklerTests
,
PyDispatchTableTests
,
PyChainDispatchTableTests
,
CompatPickleTests
]
if
has_c_implementation
:
tests
.
extend
([
CPicklerTests
,
CPersPicklerTests
,
tests
.
extend
([
C
UnpicklerTests
,
C
PicklerTests
,
CPersPicklerTests
,
CDumpPickle_LoadPickle
,
DumpPickle_CLoadPickle
,
PyPicklerUnpicklerObjectTests
,
CPicklerUnpicklerObjectTests
,
...
...
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