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
be6fe547
Kaydet (Commit)
be6fe547
authored
Tem 19, 2007
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Make test_datetime.py pass by killing all references to cPickle in it.
üst
f93254d2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
14 deletions
+2
-14
test_datetime.py
Lib/test/test_datetime.py
+2
-14
No files found.
Lib/test/test_datetime.py
Dosyayı görüntüle @
be6fe547
...
...
@@ -7,10 +7,6 @@ import os
import
sys
import
pickle
import
unittest
try
:
import
cPickle
except
ImportError
:
cPickle
=
None
from
test
import
test_support
...
...
@@ -20,16 +16,8 @@ from datetime import tzinfo
from
datetime
import
time
from
datetime
import
date
,
datetime
pickle_choices
=
[(
pickler
,
unpickler
,
proto
)
for
pickler
in
(
pickle
,
cPickle
)
if
pickler
is
not
None
for
unpickler
in
(
pickle
,
cPickle
)
if
unpickler
is
not
None
for
proto
in
range
(
3
)]
if
cPickle
is
None
:
assert
len
(
pickle_choices
)
==
3
else
:
assert
len
(
pickle_choices
)
==
2
*
2
*
3
pickle_choices
=
[(
pickle
,
pickle
,
proto
)
for
proto
in
range
(
3
)]
assert
len
(
pickle_choices
)
==
3
# An arbitrary collection of objects of non-datetime types, for testing
# mixed-type comparisons.
...
...
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