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
2bd52dcc
Kaydet (Commit)
2bd52dcc
authored
Şub 07, 2010
tarafından
Michael Foord
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
assertRaises as context manager now allows you to access exception as documented
üst
a4f46e12
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
3 deletions
+8
-3
test_unittest.py
Lib/test/test_unittest.py
+7
-2
case.py
Lib/unittest/case.py
+1
-1
No files found.
Lib/test/test_unittest.py
Dosyayı görüntüle @
2bd52dcc
...
...
@@ -3059,8 +3059,13 @@ class Test_Assertions(TestCase):
pass
else
:
self
.
fail
(
"assertRaises() didn't let exception pass through"
)
with
self
.
assertRaises
(
KeyError
):
raise
KeyError
with
self
.
assertRaises
(
KeyError
)
as
cm
:
try
:
raise
KeyError
except
Exception
,
e
:
raise
self
.
assertIs
(
cm
.
exception
,
e
)
with
self
.
assertRaises
(
KeyError
):
raise
KeyError
(
"key"
)
try
:
...
...
Lib/unittest/case.py
Dosyayı görüntüle @
2bd52dcc
...
...
@@ -91,7 +91,7 @@ class _AssertRaisesContext(object):
self
.
expected_regexp
=
expected_regexp
def
__enter__
(
self
):
pass
return
self
def
__exit__
(
self
,
exc_type
,
exc_value
,
tb
):
if
exc_type
is
None
:
...
...
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