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
ca87eebb
Kaydet (Commit)
ca87eebb
authored
May 07, 2019
tarafından
Riccardo Magliocchetti
Kaydeden (comit)
Vinay Sajip
May 07, 2019
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-36015: Handle StreamHandler representaton of stream with an integer name (GH-11908)
üst
3918ad6b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
0 deletions
+10
-0
__init__.py
Lib/logging/__init__.py
+2
-0
test_logging.py
Lib/test/test_logging.py
+8
-0
No files found.
Lib/logging/__init__.py
Dosyayı görüntüle @
ca87eebb
...
...
@@ -1111,6 +1111,8 @@ class StreamHandler(Handler):
def
__repr__
(
self
):
level
=
getLevelName
(
self
.
level
)
name
=
getattr
(
self
.
stream
,
'name'
,
''
)
# bpo-36015: name can be an int
name
=
str
(
name
)
if
name
:
name
+=
' '
return
'<
%
s
%
s(
%
s)>'
%
(
self
.
__class__
.
__name__
,
name
,
level
)
...
...
Lib/test/test_logging.py
Dosyayı görüntüle @
ca87eebb
...
...
@@ -760,6 +760,10 @@ class TestStreamHandler(logging.StreamHandler):
def
handleError
(
self
,
record
):
self
.
error_record
=
record
class
StreamWithIntName
(
object
):
level
=
logging
.
NOTSET
name
=
2
class
StreamHandlerTest
(
BaseTest
):
def
test_error_handling
(
self
):
h
=
TestStreamHandler
(
BadStream
())
...
...
@@ -797,6 +801,10 @@ class StreamHandlerTest(BaseTest):
actual
=
h
.
setStream
(
old
)
self
.
assertIsNone
(
actual
)
def
test_can_represent_stream_with_int_name
(
self
):
h
=
logging
.
StreamHandler
(
StreamWithIntName
())
self
.
assertEqual
(
repr
(
h
),
'<StreamHandler 2 (NOTSET)>'
)
# -- The following section could be moved into a server_helper.py module
# -- if it proves to be of wider utility than just test_logging
...
...
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