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
ca6befb7
Kaydet (Commit)
ca6befb7
authored
Kas 07, 2011
tarafından
Florent Xicluna
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
More assertions in test_unicode_file, to chase issue #13348.
üst
a011e2b2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
test_unicode_file.py
Lib/test/test_unicode_file.py
+8
-2
No files found.
Lib/test/test_unicode_file.py
Dosyayı görüntüle @
ca6befb7
...
...
@@ -56,16 +56,20 @@ class TestUnicodeFiles(unittest.TestCase):
# Should be able to rename the file using either name.
self
.
assertTrue
(
os
.
path
.
isfile
(
filename1
))
# must exist.
os
.
rename
(
filename1
,
filename2
+
".new"
)
self
.
assertTrue
(
os
.
path
.
isfile
(
filename1
+
".new"
))
self
.
assertFalse
(
os
.
path
.
isfile
(
filename2
))
self
.
assertTrue
(
os
.
path
.
isfile
(
filename1
+
'.new'
))
os
.
rename
(
filename1
+
".new"
,
filename2
)
self
.
assertFalse
(
os
.
path
.
isfile
(
filename1
+
'.new'
))
self
.
assertTrue
(
os
.
path
.
isfile
(
filename2
))
shutil
.
copy
(
filename1
,
filename2
+
".new"
)
os
.
unlink
(
filename1
+
".new"
)
# remove using equiv name.
# And a couple of moves, one using each name.
shutil
.
move
(
filename1
,
filename2
+
".new"
)
self
.
assertTrue
(
not
os
.
path
.
exists
(
filename2
))
self
.
assertFalse
(
os
.
path
.
exists
(
filename2
))
self
.
assertTrue
(
os
.
path
.
exists
(
filename1
+
'.new'
))
shutil
.
move
(
filename1
+
".new"
,
filename2
)
self
.
assertFalse
(
os
.
path
.
exists
(
filename2
+
'.new'
))
self
.
assertTrue
(
os
.
path
.
exists
(
filename1
))
# Note - due to the implementation of shutil.move,
# it tries a rename first. This only fails on Windows when on
...
...
@@ -73,7 +77,9 @@ class TestUnicodeFiles(unittest.TestCase):
# So we test the shutil.copy2 function, which is the thing most
# likely to fail.
shutil
.
copy2
(
filename1
,
filename2
+
".new"
)
self
.
assertTrue
(
os
.
path
.
isfile
(
filename1
+
'.new'
))
os
.
unlink
(
filename1
+
".new"
)
self
.
assertFalse
(
os
.
path
.
exists
(
filename2
+
'.new'
))
def
_do_directory
(
self
,
make_name
,
chdir_name
):
cwd
=
os
.
getcwdb
()
...
...
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