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
2279aeb2
Kaydet (Commit)
2279aeb2
authored
Tem 06, 2016
tarafından
Terry Jan Reedy
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #27452: add line counter and crc to IDLE configHandler test dump.
üst
e75ffa96
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
10 deletions
+21
-10
configHandler.py
Lib/idlelib/configHandler.py
+21
-10
No files found.
Lib/idlelib/configHandler.py
Dosyayı görüntüle @
2279aeb2
...
...
@@ -740,21 +740,32 @@ class IdleConf:
idleConf
=
IdleConf
()
# TODO Revise test output, write expanded unittest
#
## module test
#
if
__name__
==
'__main__'
:
from
zlib
import
crc32
line
,
crc
=
0
,
0
def
sprint
(
obj
):
global
line
,
crc
txt
=
str
(
obj
)
line
+=
1
crc
=
crc32
(
txt
.
encode
(
encoding
=
'utf-8'
),
crc
)
print
(
txt
)
#print('***', line, crc, '***') # uncomment for diagnosis
def
dumpCfg
(
cfg
):
print
(
'
\n
'
,
cfg
,
'
\n
'
)
for
key
in
cfg
:
print
(
'
\n
'
,
cfg
,
'
\n
'
)
# has variable '0xnnnnnnnn' addresses
for
key
in
sorted
(
cfg
.
keys
())
:
sections
=
cfg
[
key
]
.
sections
()
print
(
key
)
print
(
sections
)
s
print
(
key
)
s
print
(
sections
)
for
section
in
sections
:
options
=
cfg
[
key
]
.
options
(
section
)
print
(
section
)
print
(
options
)
s
print
(
section
)
s
print
(
options
)
for
option
in
options
:
print
(
option
,
'='
,
cfg
[
key
]
.
Get
(
section
,
option
))
sprint
(
option
+
' = '
+
cfg
[
key
]
.
Get
(
section
,
option
))
dumpCfg
(
idleConf
.
defaultCfg
)
dumpCfg
(
idleConf
.
userCfg
)
print
(
idleConf
.
userCfg
[
'main'
]
.
Get
(
'Theme'
,
'name'
))
#print idleConf.userCfg['highlight'].GetDefHighlight('Foo','normal')
print
(
'
\n
lines = '
,
line
,
', crc = '
,
crc
,
sep
=
''
)
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