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
cb953d72
Kaydet (Commit)
cb953d72
authored
Eki 11, 2000
tarafından
Fred Drake
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Test the exception-raising for error cases in copy_reg.
üst
78a6a369
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
44 additions
and
0 deletions
+44
-0
test_copy_reg
Lib/test/output/test_copy_reg
+9
-0
test_copy_reg.py
Lib/test/test_copy_reg.py
+35
-0
No files found.
Lib/test/output/test_copy_reg
0 → 100644
Dosyayı görüntüle @
cb953d72
test_copy_reg
Caught expected TypeError:
copy_reg is not intended for use with classes
Caught expected TypeError:
reduction functions must be callable
Caught expected TypeError:
constructors must be callable
Lib/test/test_copy_reg.py
0 → 100644
Dosyayı görüntüle @
cb953d72
import
copy_reg
class
C
:
pass
try
:
copy_reg
.
pickle
(
C
,
None
,
None
)
except
TypeError
,
e
:
print
"Caught expected TypeError:"
print
e
else
:
print
"Failed to catch expected TypeError when registering a class type."
print
try
:
copy_reg
.
pickle
(
type
(
1
),
"not a callable"
)
except
TypeError
,
e
:
print
"Caught expected TypeError:"
print
e
else
:
print
"Failed to catch TypeError "
\
"when registering a non-callable reduction function."
print
try
:
copy_reg
.
pickle
(
type
(
1
),
int
,
"not a callable"
)
except
TypeError
,
e
:
print
"Caught expected TypeError:"
print
e
else
:
print
"Failed to catch TypeError "
\
"when registering a non-callable constructor."
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