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
9cdf2d03
Kaydet (Commit)
9cdf2d03
authored
Ock 30, 2014
tarafından
Vinay Sajip
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #20444: Reduced code duplication. Thanks to dongwm for the report and patch.
üst
0a600cf2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
36 additions
and
52 deletions
+36
-52
config.py
Lib/logging/config.py
+36
-52
No files found.
Lib/logging/config.py
Dosyayı görüntüle @
9cdf2d03
# Copyright 2001-201
3
by Vinay Sajip. All Rights Reserved.
# Copyright 2001-201
4
by Vinay Sajip. All Rights Reserved.
#
#
# Permission to use, copy, modify, and distribute this software and its
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose and without fee is hereby granted,
# documentation for any purpose and without fee is hereby granted,
...
@@ -19,7 +19,7 @@ Configuration functions for the logging package for Python. The core package
...
@@ -19,7 +19,7 @@ Configuration functions for the logging package for Python. The core package
is based on PEP 282 and comments thereto in comp.lang.python, and influenced
is based on PEP 282 and comments thereto in comp.lang.python, and influenced
by Apache's log4j system.
by Apache's log4j system.
Copyright (C) 2001-201
3
Vinay Sajip. All Rights Reserved.
Copyright (C) 2001-201
4
Vinay Sajip. All Rights Reserved.
To use, simply 'import logging' and log away!
To use, simply 'import logging' and log away!
"""
"""
...
@@ -275,6 +275,30 @@ def valid_ident(s):
...
@@ -275,6 +275,30 @@ def valid_ident(s):
return
True
return
True
class
ConvertingMixin
(
object
):
"""For ConvertingXXX's, this mixin class provides common functions"""
def
convert_with_key
(
self
,
key
,
value
,
replace
=
True
):
result
=
self
.
configurator
.
convert
(
value
)
#If the converted value is different, save for next time
if
value
is
not
result
:
if
replace
:
self
[
key
]
=
result
if
type
(
result
)
in
(
ConvertingDict
,
ConvertingList
,
ConvertingTuple
):
result
.
parent
=
self
result
.
key
=
key
return
result
def
convert
(
self
,
value
):
result
=
self
.
configurator
.
convert
(
value
)
if
value
is
not
result
:
if
type
(
result
)
in
(
ConvertingDict
,
ConvertingList
,
ConvertingTuple
):
result
.
parent
=
self
return
result
# The ConvertingXXX classes are wrappers around standard Python containers,
# The ConvertingXXX classes are wrappers around standard Python containers,
# and they serve to convert any suitable values in the container. The
# and they serve to convert any suitable values in the container. The
# conversion converts base dicts, lists and tuples to their wrapped
# conversion converts base dicts, lists and tuples to their wrapped
...
@@ -284,77 +308,37 @@ def valid_ident(s):
...
@@ -284,77 +308,37 @@ def valid_ident(s):
# Each wrapper should have a configurator attribute holding the actual
# Each wrapper should have a configurator attribute holding the actual
# configurator to use for conversion.
# configurator to use for conversion.
class
ConvertingDict
(
dict
):
class
ConvertingDict
(
dict
,
ConvertingMixin
):
"""A converting dictionary wrapper."""
"""A converting dictionary wrapper."""
def
__getitem__
(
self
,
key
):
def
__getitem__
(
self
,
key
):
value
=
dict
.
__getitem__
(
self
,
key
)
value
=
dict
.
__getitem__
(
self
,
key
)
result
=
self
.
configurator
.
convert
(
value
)
return
self
.
convert_with_key
(
key
,
value
)
#If the converted value is different, save for next time
if
value
is
not
result
:
self
[
key
]
=
result
if
type
(
result
)
in
(
ConvertingDict
,
ConvertingList
,
ConvertingTuple
):
result
.
parent
=
self
result
.
key
=
key
return
result
def
get
(
self
,
key
,
default
=
None
):
def
get
(
self
,
key
,
default
=
None
):
value
=
dict
.
get
(
self
,
key
,
default
)
value
=
dict
.
get
(
self
,
key
,
default
)
result
=
self
.
configurator
.
convert
(
value
)
return
self
.
convert_with_key
(
key
,
value
)
#If the converted value is different, save for next time
if
value
is
not
result
:
self
[
key
]
=
result
if
type
(
result
)
in
(
ConvertingDict
,
ConvertingList
,
ConvertingTuple
):
result
.
parent
=
self
result
.
key
=
key
return
result
def
pop
(
self
,
key
,
default
=
None
):
def
pop
(
self
,
key
,
default
=
None
):
value
=
dict
.
pop
(
self
,
key
,
default
)
value
=
dict
.
pop
(
self
,
key
,
default
)
result
=
self
.
configurator
.
convert
(
value
)
return
self
.
convert_with_key
(
key
,
value
,
replace
=
False
)
if
value
is
not
result
:
if
type
(
result
)
in
(
ConvertingDict
,
ConvertingList
,
ConvertingTuple
):
result
.
parent
=
self
result
.
key
=
key
return
result
class
ConvertingList
(
list
):
class
ConvertingList
(
list
,
ConvertingMixin
):
"""A converting list wrapper."""
"""A converting list wrapper."""
def
__getitem__
(
self
,
key
):
def
__getitem__
(
self
,
key
):
value
=
list
.
__getitem__
(
self
,
key
)
value
=
list
.
__getitem__
(
self
,
key
)
result
=
self
.
configurator
.
convert
(
value
)
return
self
.
convert_with_key
(
key
,
value
)
#If the converted value is different, save for next time
if
value
is
not
result
:
self
[
key
]
=
result
if
type
(
result
)
in
(
ConvertingDict
,
ConvertingList
,
ConvertingTuple
):
result
.
parent
=
self
result
.
key
=
key
return
result
def
pop
(
self
,
idx
=-
1
):
def
pop
(
self
,
idx
=-
1
):
value
=
list
.
pop
(
self
,
idx
)
value
=
list
.
pop
(
self
,
idx
)
result
=
self
.
configurator
.
convert
(
value
)
return
self
.
convert
(
value
)
if
value
is
not
result
:
if
type
(
result
)
in
(
ConvertingDict
,
ConvertingList
,
ConvertingTuple
):
result
.
parent
=
self
return
result
class
ConvertingTuple
(
tuple
):
class
ConvertingTuple
(
tuple
,
ConvertingMixin
):
"""A converting tuple wrapper."""
"""A converting tuple wrapper."""
def
__getitem__
(
self
,
key
):
def
__getitem__
(
self
,
key
):
value
=
tuple
.
__getitem__
(
self
,
key
)
value
=
tuple
.
__getitem__
(
self
,
key
)
result
=
self
.
configurator
.
convert
(
value
)
# Can't replace a tuple entry.
if
value
is
not
result
:
return
self
.
convert_with_key
(
key
,
value
,
replace
=
False
)
if
type
(
result
)
in
(
ConvertingDict
,
ConvertingList
,
ConvertingTuple
):
result
.
parent
=
self
result
.
key
=
key
return
result
class
BaseConfigurator
(
object
):
class
BaseConfigurator
(
object
):
"""
"""
...
...
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