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
0ac4d4c8
Kaydet (Commit)
0ac4d4c8
authored
Şub 02, 2010
tarafından
Ezio Melotti
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Silence a couple of -3 warnings
üst
5d62cfe0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
test_unittest.py
Lib/test/test_unittest.py
+5
-2
No files found.
Lib/test/test_unittest.py
Dosyayı görüntüle @
0ac4d4c8
...
...
@@ -3056,7 +3056,7 @@ class Test_Assertions(TestCase):
try
:
self
.
assertRaises
(
KeyError
,
lambda
:
None
)
except
self
.
failureException
as
e
:
self
.
assertIn
(
"KeyError not raised"
,
e
)
self
.
assertIn
(
"KeyError not raised"
,
e
.
args
)
else
:
self
.
fail
(
"assertRaises() didn't fail"
)
try
:
...
...
@@ -3073,7 +3073,7 @@ class Test_Assertions(TestCase):
with
self
.
assertRaises
(
KeyError
):
pass
except
self
.
failureException
as
e
:
self
.
assertIn
(
"KeyError not raised"
,
e
)
self
.
assertIn
(
"KeyError not raised"
,
e
.
args
)
else
:
self
.
fail
(
"assertRaises() didn't fail"
)
try
:
...
...
@@ -3591,6 +3591,9 @@ class TestDiscovery(TestCase):
def
__eq__
(
self
,
other
):
return
self
.
path
==
other
.
path
# Silence py3k warning
__hash__
=
None
loader
.
_get_module_from_name
=
lambda
name
:
Module
(
name
)
def
loadTestsFromModule
(
module
,
use_load_tests
):
if
use_load_tests
:
...
...
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