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
3d678e3b
Kaydet (Commit)
3d678e3b
authored
May 04, 2014
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
use with blocks to make sure files are closed
üst
f24600eb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
18 deletions
+12
-18
test_filecmp.py
Lib/test/test_filecmp.py
+12
-18
No files found.
Lib/test/test_filecmp.py
Dosyayı görüntüle @
3d678e3b
...
...
@@ -14,13 +14,11 @@ class FileCompareTestCase(unittest.TestCase):
self
.
name_diff
=
support
.
TESTFN
+
'-diff'
data
=
'Contents of file go here.
\n
'
for
name
in
[
self
.
name
,
self
.
name_same
,
self
.
name_diff
]:
output
=
open
(
name
,
'w'
)
output
.
write
(
data
)
output
.
close
()
with
open
(
name
,
'w'
)
as
output
:
output
.
write
(
data
)
output
=
open
(
self
.
name_diff
,
'a+'
)
output
.
write
(
'An extra line.
\n
'
)
output
.
close
()
with
open
(
self
.
name_diff
,
'a+'
)
as
output
:
output
.
write
(
'An extra line.
\n
'
)
self
.
dir
=
tempfile
.
gettempdir
()
def
tearDown
(
self
):
...
...
@@ -71,13 +69,11 @@ class DirCompareTestCase(unittest.TestCase):
fn
=
'FiLe'
# Verify case-insensitive comparison
else
:
fn
=
'file'
output
=
open
(
os
.
path
.
join
(
dir
,
fn
),
'w'
)
output
.
write
(
data
)
output
.
close
()
with
open
(
os
.
path
.
join
(
dir
,
fn
),
'w'
)
as
output
:
output
.
write
(
data
)
output
=
open
(
os
.
path
.
join
(
self
.
dir_diff
,
'file2'
),
'w'
)
output
.
write
(
'An extra file.
\n
'
)
output
.
close
()
with
open
(
os
.
path
.
join
(
self
.
dir_diff
,
'file2'
),
'w'
)
as
output
:
output
.
write
(
'An extra file.
\n
'
)
def
tearDown
(
self
):
for
dir
in
(
self
.
dir
,
self
.
dir_same
,
self
.
dir_diff
):
...
...
@@ -104,9 +100,8 @@ class DirCompareTestCase(unittest.TestCase):
"Comparing directory to same fails"
)
# Add different file2
output
=
open
(
os
.
path
.
join
(
self
.
dir
,
'file2'
),
'w'
)
output
.
write
(
'Different contents.
\n
'
)
output
.
close
()
with
open
(
os
.
path
.
join
(
self
.
dir
,
'file2'
),
'w'
)
as
output
:
output
.
write
(
'Different contents.
\n
'
)
self
.
assertFalse
(
filecmp
.
cmpfiles
(
self
.
dir
,
self
.
dir_same
,
[
'file'
,
'file2'
])
==
...
...
@@ -178,9 +173,8 @@ class DirCompareTestCase(unittest.TestCase):
self
.
_assert_report
(
d
.
report
,
expected_report
)
# Add different file2
output
=
open
(
os
.
path
.
join
(
self
.
dir_diff
,
'file2'
),
'w'
)
output
.
write
(
'Different contents.
\n
'
)
output
.
close
()
with
open
(
os
.
path
.
join
(
self
.
dir_diff
,
'file2'
),
'w'
)
as
output
:
output
.
write
(
'Different contents.
\n
'
)
d
=
filecmp
.
dircmp
(
self
.
dir
,
self
.
dir_diff
)
self
.
assertEqual
(
d
.
same_files
,
[
'file'
])
self
.
assertEqual
(
d
.
diff_files
,
[
'file2'
])
...
...
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