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
ce3d2214
Kaydet (Commit)
ce3d2214
authored
Nis 01, 2009
tarafından
Brett Cannon
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
test_warnings ironically had a single test that was not protecting the warnings
filter and was resetting it.
üst
2da4d628
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
8 deletions
+10
-8
test_warnings.py
Lib/test/test_warnings.py
+8
-8
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/test/test_warnings.py
Dosyayı görüntüle @
ce3d2214
...
...
@@ -460,14 +460,14 @@ class _WarningsTests(BaseTest):
self
.
failUnless
(
text
in
result
)
def
test_showwarning_not_callable
(
self
):
self
.
module
.
filterwarnings
(
"always"
,
category
=
UserWarning
)
old_showwarning
=
self
.
module
.
showwarning
self
.
module
.
showwarning
=
23
try
:
self
.
assertRaises
(
TypeError
,
self
.
module
.
warn
,
"Warning!"
)
finally
:
self
.
module
.
showwarning
=
old_showwarning
self
.
module
.
resetwarnings
()
with
original_warnings
.
catch_warnings
(
module
=
self
.
module
):
self
.
module
.
filterwarnings
(
"always"
,
category
=
UserWarning
)
old_showwarning
=
self
.
module
.
showwarning
self
.
module
.
showwarning
=
23
try
:
self
.
assertRaises
(
TypeError
,
self
.
module
.
warn
,
"Warning!"
)
finally
:
self
.
module
.
showwarning
=
old_showwarning
def
test_show_warning_output
(
self
):
# With showarning() missing, make sure that output is okay.
...
...
Misc/NEWS
Dosyayı görüntüle @
ce3d2214
...
...
@@ -730,6 +730,8 @@ Extension Modules
Tests
-----
- Fix test_warnings to no longer reset the warnings filter.
- Fix test_logging to no longer reset the warnings filter.
- Issue #5635: Fix running test_sys with tracing enabled.
...
...
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