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
145759c8
Kaydet (Commit)
145759c8
authored
Agu 22, 2014
tarafından
Brett Cannon
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge for issue #22191 fix
üst
7c08b19f
14ad5319
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
22 additions
and
1 deletion
+22
-1
test_warnings.py
Lib/test/test_warnings.py
+19
-0
warnings.py
Lib/warnings.py
+2
-1
ACKS
Misc/ACKS
+1
-0
No files found.
Lib/test/test_warnings.py
Dosyayı görüntüle @
145759c8
...
...
@@ -61,6 +61,25 @@ class BaseTest:
sys
.
modules
[
'warnings'
]
=
original_warnings
super
(
BaseTest
,
self
)
.
tearDown
()
class
PublicAPITests
(
BaseTest
):
"""Ensures that the correct values are exposed in the
public API.
"""
def
test_module_all_attribute
(
self
):
self
.
assertTrue
(
hasattr
(
self
.
module
,
'__all__'
))
target_api
=
[
"warn"
,
"warn_explicit"
,
"showwarning"
,
"formatwarning"
,
"filterwarnings"
,
"simplefilter"
,
"resetwarnings"
,
"catch_warnings"
]
self
.
assertSetEqual
(
set
(
self
.
module
.
__all__
),
set
(
target_api
))
class
CPublicAPITests
(
PublicAPITests
,
unittest
.
TestCase
):
module
=
c_warnings
class
PyPublicAPITests
(
PublicAPITests
,
unittest
.
TestCase
):
module
=
py_warnings
class
FilterTests
(
BaseTest
):
...
...
Lib/warnings.py
Dosyayı görüntüle @
145759c8
...
...
@@ -2,7 +2,8 @@
import
sys
__all__
=
[
"warn"
,
"showwarning"
,
"formatwarning"
,
"filterwarnings"
,
__all__
=
[
"warn"
,
"warn_explicit"
,
"showwarning"
,
"formatwarning"
,
"filterwarnings"
,
"simplefilter"
,
"resetwarnings"
,
"catch_warnings"
]
...
...
Misc/ACKS
Dosyayı görüntüle @
145759c8
...
...
@@ -1063,6 +1063,7 @@ Antoine Pitrou
Jean-François Piéronne
Oleg Plakhotnyuk
Remi Pointel
Jon Poler
Ariel Poliak
Guilherme Polo
Illia Polosukhin
...
...
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