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
8188f585
Kaydet (Commit)
8188f585
authored
Tem 25, 2011
tarafından
Vinay Sajip
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Fixes #12637: Merged fix from 3.2 and added test.
üst
acd9f7ce
45dedaaf
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
0 deletions
+3
-0
__init__.py
Lib/logging/__init__.py
+1
-0
test_logging.py
Lib/test/test_logging.py
+2
-0
No files found.
Lib/logging/__init__.py
Dosyayı görüntüle @
8188f585
...
...
@@ -1442,6 +1442,7 @@ class Logger(Filterer):
c
=
c
.
parent
if
(
found
==
0
):
if
lastResort
:
if
record
.
levelno
>=
lastResort
.
level
:
lastResort
.
handle
(
record
)
elif
raiseExceptions
and
not
self
.
manager
.
emittedNoHandlerWarning
:
sys
.
stderr
.
write
(
"No handlers could be found for logger"
...
...
Lib/test/test_logging.py
Dosyayı görüntüle @
8188f585
...
...
@@ -2923,6 +2923,8 @@ class LastResortTest(BaseTest):
old_raise_exceptions
=
logging
.
raiseExceptions
try
:
sys
.
stderr
=
sio
=
io
.
StringIO
()
root
.
debug
(
'This should not appear'
)
self
.
assertEqual
(
sio
.
getvalue
(),
''
)
root
.
warning
(
'This is your final chance!'
)
self
.
assertEqual
(
sio
.
getvalue
(),
'This is your final chance!
\n
'
)
#No handlers and no last resort, so 'No handlers' message
...
...
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