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
dc5097ff
Kaydet (Commit)
dc5097ff
authored
Agu 31, 2010
tarafından
Vinay Sajip
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Removed _unicode variable which is always False in Python 3.x.
üst
ec1cd1c4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
32 deletions
+2
-32
__init__.py
Lib/logging/__init__.py
+2
-32
No files found.
Lib/logging/__init__.py
Dosyayı görüntüle @
dc5097ff
...
...
@@ -53,8 +53,6 @@ __date__ = "07 February 2010"
# Miscellaneous module data
#---------------------------------------------------------------------------
_unicode
=
'unicode'
in
dir
(
__builtins__
)
#
# _srcfile is used when walking the stack to check when we've got the first
# caller stack frame.
...
...
@@ -313,15 +311,7 @@ class LogRecord(object):
Return the message for this LogRecord after merging any user-supplied
arguments with the message.
"""
if
not
_unicode
:
#if no unicode support...
msg
=
str
(
self
.
msg
)
else
:
msg
=
self
.
msg
if
not
isinstance
(
msg
,
str
):
try
:
msg
=
str
(
self
.
msg
)
except
UnicodeError
:
msg
=
self
.
msg
#Defer encoding till later
msg
=
str
(
self
.
msg
)
if
self
.
args
:
msg
=
msg
%
self
.
args
return
msg
...
...
@@ -838,27 +828,7 @@ class StreamHandler(Handler):
msg
=
self
.
format
(
record
)
stream
=
self
.
stream
fs
=
"
%
s
\n
"
if
not
_unicode
:
#if no unicode support...
stream
.
write
(
fs
%
msg
)
else
:
try
:
if
(
isinstance
(
msg
,
unicode
)
and
getattr
(
stream
,
'encoding'
,
None
)):
fs
=
fs
.
decode
(
stream
.
encoding
)
try
:
stream
.
write
(
fs
%
msg
)
except
UnicodeEncodeError
:
#Printing to terminals sometimes fails. For example,
#with an encoding of 'cp1251', the above write will
#work if written to a stream opened or wrapped by
#the codecs module, but fail when writing to a
#terminal even when the codepage is set to cp1251.
#An extra encoding step seems to be needed.
stream
.
write
((
fs
%
msg
)
.
encode
(
stream
.
encoding
))
else
:
stream
.
write
(
fs
%
msg
)
except
UnicodeError
:
stream
.
write
(
fs
%
msg
.
encode
(
"UTF-8"
))
stream
.
write
(
fs
%
msg
)
self
.
flush
()
except
(
KeyboardInterrupt
,
SystemExit
):
raise
...
...
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