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
a5a24b76
Kaydet (Commit)
a5a24b76
authored
Eki 04, 1999
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Added has_option(); fix bug in get() which botched interpolation if
'%(' was found in first position (found by Fred Drake).
üst
6a8d84b0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
1 deletion
+16
-1
ConfigParser.py
Lib/ConfigParser.py
+16
-1
No files found.
Lib/ConfigParser.py
Dosyayı görüntüle @
a5a24b76
...
...
@@ -33,9 +33,15 @@ ConfigParser -- responsible for for parsing a list of
sections()
return all the configuration section names, sans DEFAULT
has_section(section)
return whether the given section exists
options(section)
return list of configuration options for the named section
has_option(section, option)
return whether the given section has the given option
read(filenames)
read and parse the list of named configuration files, given by
name. A single filename is also allowed. Non-existing files
...
...
@@ -165,6 +171,7 @@ class ConfigParser:
return
self
.
__sections
.
has_key
(
section
)
def
options
(
self
,
section
):
"""Return a list of option names for the given section name."""
try
:
opts
=
self
.
__sections
[
section
]
.
copy
()
except
KeyError
:
...
...
@@ -172,6 +179,14 @@ class ConfigParser:
opts
.
update
(
self
.
__defaults
)
return
opts
.
keys
()
def
has_option
(
self
,
section
,
option
):
"""Return whether the given section has the given option."""
try
:
opts
=
self
.
__sections
[
section
]
except
KeyError
:
raise
NoSectionError
(
section
)
return
opts
.
has_key
(
option
)
def
read
(
self
,
filenames
):
"""Read and parse a filename or a list of filenames.
...
...
@@ -245,7 +260,7 @@ class ConfigParser:
depth
=
0
while
depth
<
10
:
# Loop through this until it's done
depth
=
depth
+
1
if
not
string
.
find
(
value
,
"
%
("
)
:
if
string
.
find
(
value
,
"
%
("
)
>=
0
:
try
:
value
=
value
%
d
except
KeyError
,
key
:
...
...
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