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
14ad5319
Kaydet (Commit)
14ad5319
authored
Agu 22, 2014
tarafından
Brett Cannon
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #22191: Fix warnings.__all__.
Thanks to Jon Poler for the patch.
üst
a969ae2e
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
24 additions
and
1 deletion
+24
-1
test_warnings.py
Lib/test/test_warnings.py
+19
-0
warnings.py
Lib/warnings.py
+2
-1
ACKS
Misc/ACKS
+1
-0
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/test/test_warnings.py
Dosyayı görüntüle @
14ad5319
...
@@ -61,6 +61,25 @@ class BaseTest:
...
@@ -61,6 +61,25 @@ class BaseTest:
sys
.
modules
[
'warnings'
]
=
original_warnings
sys
.
modules
[
'warnings'
]
=
original_warnings
super
(
BaseTest
,
self
)
.
tearDown
()
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
):
class
FilterTests
(
BaseTest
):
...
...
Lib/warnings.py
Dosyayı görüntüle @
14ad5319
...
@@ -2,7 +2,8 @@
...
@@ -2,7 +2,8 @@
import
sys
import
sys
__all__
=
[
"warn"
,
"showwarning"
,
"formatwarning"
,
"filterwarnings"
,
__all__
=
[
"warn"
,
"warn_explicit"
,
"showwarning"
,
"formatwarning"
,
"filterwarnings"
,
"simplefilter"
,
"resetwarnings"
,
"catch_warnings"
]
"resetwarnings"
,
"catch_warnings"
]
...
...
Misc/ACKS
Dosyayı görüntüle @
14ad5319
...
@@ -1054,6 +1054,7 @@ Antoine Pitrou
...
@@ -1054,6 +1054,7 @@ Antoine Pitrou
Jean-François Piéronne
Jean-François Piéronne
Oleg Plakhotnyuk
Oleg Plakhotnyuk
Remi Pointel
Remi Pointel
Jon Poler
Ariel Poliak
Ariel Poliak
Guilherme Polo
Guilherme Polo
Illia Polosukhin
Illia Polosukhin
...
...
Misc/NEWS
Dosyayı görüntüle @
14ad5319
...
@@ -27,6 +27,8 @@ Core and Builtins
...
@@ -27,6 +27,8 @@ Core and Builtins
Library
Library
-------
-------
-- Issue #22191: Fix warnings.__all__.
- Issue #15696: Add a __sizeof__ implementation for mmap objects on Windows.
- Issue #15696: Add a __sizeof__ implementation for mmap objects on Windows.
- Issue #22068: Avoided reference loops with Variables and Fonts in Tkinter.
- Issue #22068: Avoided reference loops with Variables and Fonts in Tkinter.
...
...
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