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
43d6e812
Kaydet (Commit)
43d6e812
authored
Eki 07, 2005
tarafından
Vinay Sajip
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed bug where the logging message was wrongly being demoted from Unicode to string (SF #1314107)
üst
d1c1e10f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
6 deletions
+8
-6
__init__.py
Lib/logging/__init__.py
+8
-6
No files found.
Lib/logging/__init__.py
Dosyayı görüntüle @
43d6e812
...
...
@@ -41,8 +41,8 @@ except ImportError:
__author__
=
"Vinay Sajip <vinay_sajip@red-dove.com>"
__status__
=
"beta"
__version__
=
"0.4.9.
6
"
__date__
=
"
27 March
2005"
__version__
=
"0.4.9.
7
"
__date__
=
"
07 October
2005"
#---------------------------------------------------------------------------
# Miscellaneous module data
...
...
@@ -266,10 +266,12 @@ class LogRecord:
if
not
hasattr
(
types
,
"UnicodeType"
):
#if no unicode support...
msg
=
str
(
self
.
msg
)
else
:
try
:
msg
=
str
(
self
.
msg
)
except
UnicodeError
:
msg
=
self
.
msg
#Defer encoding till later
msg
=
self
.
msg
if
type
(
msg
)
not
in
(
types
.
UnicodeType
,
types
.
StringType
):
try
:
msg
=
str
(
self
.
msg
)
except
UnicodeError
:
msg
=
self
.
msg
#Defer encoding till later
if
self
.
args
:
msg
=
msg
%
self
.
args
return
msg
...
...
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