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
0a889534
Kaydet (Commit)
0a889534
authored
Eki 22, 2011
tarafından
Vinay Sajip
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Closes #13235: Changed PendingDeprecationWarning to DeprecationWarning.
üst
dd18d3ad
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
__init__.py
Lib/logging/__init__.py
+4
-4
No files found.
Lib/logging/__init__.py
Dosyayı görüntüle @
0a889534
...
...
@@ -251,7 +251,7 @@ class LogRecord(object):
# during formatting, we test to see if the arg is present using
# 'if self.args:'. If the event being logged is e.g. 'Value is %d'
# and if the passed arg fails 'if self.args:' then no formatting
# is done. For example, logger.warn('Value is %d', 0) would log
# is done. For example, logger.warn
ing
('Value is %d', 0) would log
# 'Value is %d' instead of 'Value is 0'.
# For the use case of passing a dictionary, this should not be a
# problem.
...
...
@@ -1245,7 +1245,7 @@ class Logger(Filterer):
def
warn
(
self
,
msg
,
*
args
,
**
kwargs
):
warnings
.
warn
(
"The 'warn' method is deprecated, "
"use 'warning' instead"
,
Pending
DeprecationWarning
,
2
)
"use 'warning' instead"
,
DeprecationWarning
,
2
)
self
.
warning
(
msg
,
*
args
,
**
kwargs
)
def
error
(
self
,
msg
,
*
args
,
**
kwargs
):
...
...
@@ -1561,7 +1561,7 @@ class LoggerAdapter(object):
def
warn
(
self
,
msg
,
*
args
,
**
kwargs
):
warnings
.
warn
(
"The 'warn' method is deprecated, "
"use 'warning' instead"
,
Pending
DeprecationWarning
,
2
)
"use 'warning' instead"
,
DeprecationWarning
,
2
)
self
.
warning
(
msg
,
*
args
,
**
kwargs
)
def
error
(
self
,
msg
,
*
args
,
**
kwargs
):
...
...
@@ -1774,7 +1774,7 @@ def warning(msg, *args, **kwargs):
def
warn
(
msg
,
*
args
,
**
kwargs
):
warnings
.
warn
(
"The 'warn' function is deprecated, "
"use 'warning' instead"
,
Pending
DeprecationWarning
,
2
)
"use 'warning' instead"
,
DeprecationWarning
,
2
)
warning
(
msg
,
*
args
,
**
kwargs
)
def
info
(
msg
,
*
args
,
**
kwargs
):
...
...
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