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
e0912db2
Kaydet (Commit)
e0912db2
authored
Kas 07, 2011
tarafından
Florent Xicluna
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Closes #13366: fix test_pep277 failure on Windows.
üst
7ef53ef9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
7 deletions
+12
-7
test_pep277.py
Lib/test/test_pep277.py
+12
-7
No files found.
Lib/test/test_pep277.py
Dosyayı görüntüle @
e0912db2
...
...
@@ -96,9 +96,10 @@ class UnicodeFileTests(unittest.TestCase):
with
self
.
assertRaises
(
expected_exception
)
as
c
:
fn
(
filename
)
exc_filename
=
c
.
exception
.
filename
# the "filename" exception attribute may be encoded
if
isinstance
(
exc_filename
,
bytes
):
filename
=
filename
.
encode
(
sys
.
getfilesystemencoding
())
# listdir may append a wildcard to the filename
if
fn
is
os
.
listdir
and
sys
.
platform
==
'win32'
:
exc_filename
,
_
,
wildcard
=
exc_filename
.
rpartition
(
os
.
sep
)
self
.
assertEqual
(
wildcard
,
r'*.*'
)
if
check_filename
:
self
.
assertEqual
(
exc_filename
,
filename
,
"Function '
%
s(
%
a) failed "
"with bad filename in the exception:
%
a"
%
...
...
@@ -113,8 +114,12 @@ class UnicodeFileTests(unittest.TestCase):
self
.
_apply_failure
(
os
.
chdir
,
name
)
self
.
_apply_failure
(
os
.
rmdir
,
name
)
self
.
_apply_failure
(
os
.
remove
,
name
)
# listdir may append a wildcard to the filename, so dont check
self
.
_apply_failure
(
os
.
listdir
,
name
,
check_filename
=
False
)
self
.
_apply_failure
(
os
.
listdir
,
name
)
if
sys
.
platform
==
'win32'
:
_listdir_failure
=
FileNotFoundError
else
:
_listdir_failure
=
NotADirectoryError
def
test_open
(
self
):
for
name
in
self
.
files
:
...
...
@@ -122,7 +127,7 @@ class UnicodeFileTests(unittest.TestCase):
f
.
write
((
name
+
'
\n
'
)
.
encode
(
"utf-8"
))
f
.
close
()
os
.
stat
(
name
)
self
.
_apply_failure
(
os
.
listdir
,
name
,
NotADirectoryError
)
self
.
_apply_failure
(
os
.
listdir
,
name
,
self
.
_listdir_failure
)
# Skip the test on darwin, because darwin does normalize the filename to
# NFD (a variant of Unicode NFD form). Normalize the filename to NFC, NFKC,
...
...
@@ -142,7 +147,7 @@ class UnicodeFileTests(unittest.TestCase):
self
.
_apply_failure
(
os
.
rmdir
,
name
)
self
.
_apply_failure
(
os
.
remove
,
name
)
# listdir may append a wildcard to the filename, so dont check
self
.
_apply_failure
(
os
.
listdir
,
name
,
check_filename
=
False
)
self
.
_apply_failure
(
os
.
listdir
,
name
)
# Skip the test on darwin, because darwin uses a normalization different
# than Python NFD normalization: filenames are different even if we use
...
...
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