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
72ed0784
Kaydet (Commit)
72ed0784
authored
Eyl 01, 2008
tarafından
Vinay Sajip
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
logging: fixed lack of use of encoding attribute specified on a stream.
üst
f7dd75f4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
5 deletions
+10
-5
__init__.py
Lib/logging/__init__.py
+10
-5
No files found.
Lib/logging/__init__.py
Dosyayı görüntüle @
72ed0784
...
...
@@ -719,6 +719,7 @@ class StreamHandler(Handler):
to a stream. Note that this class does not close the stream, as
sys.stdout or sys.stderr may be used.
"""
def
__init__
(
self
,
strm
=
None
):
"""
Initialize the handler.
...
...
@@ -743,10 +744,11 @@ class StreamHandler(Handler):
Emit a record.
If a formatter is specified, it is used to format the record.
The record is then written to the stream with a trailing newline
[N.B. this may be removed depending on feedback]. If exception
information is present, it is formatted using
traceback.print_exception and appended to the stream.
The record is then written to the stream with a trailing newline. If
exception information is present, it is formatted using
traceback.print_exception and appended to the stream. If the stream
has an 'encoding' attribute, it is used to encode the message before
output to the stream.
"""
try
:
msg
=
self
.
format
(
record
)
...
...
@@ -755,7 +757,10 @@ class StreamHandler(Handler):
self
.
stream
.
write
(
fs
%
msg
)
else
:
try
:
self
.
stream
.
write
(
fs
%
msg
)
if
hasattr
(
self
.
stream
,
'encoding'
):
self
.
stream
.
write
(
fs
%
msg
.
encode
(
self
.
stream
.
encoding
))
else
:
self
.
stream
.
write
(
fs
%
msg
)
except
UnicodeError
:
self
.
stream
.
write
(
fs
%
msg
.
encode
(
"UTF-8"
))
self
.
flush
()
...
...
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