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
42d54450
Kaydet (Commit)
42d54450
authored
Eyl 22, 2010
tarafından
Florent Xicluna
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix typo and add test case.
üst
31c604d3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
5 deletions
+19
-5
configparser.py
Lib/configparser.py
+3
-4
test_cfgparser.py
Lib/test/test_cfgparser.py
+16
-1
No files found.
Lib/configparser.py
Dosyayı görüntüle @
42d54450
...
...
@@ -493,11 +493,10 @@ class RawConfigParser:
read_ok
=
[]
for
filename
in
filenames
:
try
:
fp
=
open
(
filename
,
encoding
=
encoding
)
with
open
(
filename
,
encoding
=
encoding
)
as
fp
:
self
.
_read
(
fp
,
filename
)
except
IOError
:
continue
self
.
_read
(
fp
,
filename
)
fp
.
close
()
read_ok
.
append
(
filename
)
return
read_ok
...
...
@@ -511,7 +510,7 @@ class RawConfigParser:
"""
if
source
is
None
:
try
:
s
rou
ce
=
f
.
name
s
our
ce
=
f
.
name
except
AttributeError
:
source
=
'<???>'
self
.
_read
(
f
,
source
)
...
...
Lib/test/test_cfgparser.py
Dosyayı görüntüle @
42d54450
...
...
@@ -328,9 +328,24 @@ boolean {0[0]} NO
e
=
self
.
parse_error
(
cf
,
configparser
.
ParsingError
,
"[Foo]
\n
wrong-indent
\n
"
)
self
.
assertEqual
(
e
.
args
,
(
'<???>'
,))
# read_file on a real file
tricky
=
support
.
findfile
(
"cfgparser.3"
)
if
self
.
delimiters
[
0
]
==
'='
:
error
=
configparser
.
ParsingError
expected
=
(
tricky
,)
else
:
error
=
configparser
.
MissingSectionHeaderError
expected
=
(
tricky
,
1
,
' # INI with as many tricky parts as possible
\n
'
)
with
open
(
tricky
)
as
f
:
e
=
self
.
parse_error
(
cf
,
error
,
f
)
self
.
assertEqual
(
e
.
args
,
expected
)
def
parse_error
(
self
,
cf
,
exc
,
src
):
sio
=
io
.
StringIO
(
src
)
if
hasattr
(
src
,
'readline'
):
sio
=
src
else
:
sio
=
io
.
StringIO
(
src
)
with
self
.
assertRaises
(
exc
)
as
cm
:
cf
.
read_file
(
sio
)
return
cm
.
exception
...
...
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