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
ed014f7e
Kaydet (Commit)
ed014f7e
authored
Tem 19, 2017
tarafından
Louie Lu
Kaydeden (comit)
terryjreedy
Tem 19, 2017
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-30917: IDLE: Fix mock_config deepcopy to read_string (#2754)
Patch by LouieLu.
üst
d81bea65
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
5 deletions
+11
-5
test_config.py
Lib/idlelib/idle_test/test_config.py
+11
-5
No files found.
Lib/idlelib/idle_test/test_config.py
Dosyayı görüntüle @
ed014f7e
...
...
@@ -196,6 +196,8 @@ class IdleConfTest(unittest.TestCase):
@classmethod
def
setUpClass
(
cls
):
cls
.
config_string
=
{}
conf
=
config
.
IdleConf
(
_utest
=
True
)
if
__name__
!=
'__main__'
:
idle_dir
=
os
.
path
.
dirname
(
__file__
)
...
...
@@ -203,10 +205,9 @@ class IdleConfTest(unittest.TestCase):
idle_dir
=
os
.
path
.
abspath
(
sys
.
path
[
0
])
for
ctype
in
conf
.
config_types
:
config_path
=
os
.
path
.
join
(
idle_dir
,
'../config-
%
s.def'
%
ctype
)
conf
.
defaultCfg
[
ctype
]
=
config
.
IdleConfParser
(
config_path
)
conf
.
userCfg
[
ctype
]
=
config
.
IdleUserConfParser
(
config_path
)
conf
.
LoadCfgFiles
()
cls
.
conf
=
conf
with
open
(
config_path
,
'r'
)
as
f
:
cls
.
config_string
[
ctype
]
=
f
.
read
()
cls
.
orig_warn
=
config
.
_warn
config
.
_warn
=
Func
()
...
...
@@ -222,7 +223,12 @@ class IdleConfTest(unittest.TestCase):
Both default and user config used the same config-*.def
"""
conf
=
copy
.
deepcopy
(
self
.
conf
)
conf
=
config
.
IdleConf
(
_utest
=
True
)
for
ctype
in
conf
.
config_types
:
conf
.
defaultCfg
[
ctype
]
=
config
.
IdleConfParser
(
''
)
conf
.
defaultCfg
[
ctype
]
.
read_string
(
self
.
config_string
[
ctype
])
conf
.
userCfg
[
ctype
]
=
config
.
IdleUserConfParser
(
''
)
conf
.
userCfg
[
ctype
]
.
read_string
(
self
.
config_string
[
ctype
])
return
conf
...
...
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