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
204093ac
Kaydet (Commit)
204093ac
authored
Kas 01, 2007
tarafından
Christian Heimes
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Removed non ASCII text from test as requested by Guido.
üst
568065e9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
test_import.py
Lib/test/test_import.py
+5
-4
No files found.
Lib/test/test_import.py
Dosyayı görüntüle @
204093ac
...
...
@@ -158,8 +158,9 @@ class ImportTest(unittest.TestCase):
warnings
.
simplefilter
(
'error'
,
ImportWarning
)
self
.
assertRaises
(
ImportWarning
,
__import__
,
"site-packages"
)
class
UnicodePathsTests
(
unittest
.
TestCase
):
SAMPLES
=
(
'test'
,
'testäöüß'
,
'testéè'
,
'test°³²'
)
class
PathsTests
(
unittest
.
TestCase
):
SAMPLES
=
(
'test'
,
'test
\u00e4\u00f6\u00fc\u00df
'
,
'test
\u00e9\u00e8
'
,
'test
\u00b0\u00b3\u00b2
'
)
path
=
TESTFN
def
setUp
(
self
):
...
...
@@ -170,7 +171,7 @@ class UnicodePathsTests(unittest.TestCase):
shutil
.
rmtree
(
self
.
path
)
sys
.
path
=
self
.
syspath
def
test_sys_path
(
self
):
def
test_sys_path
_with_unicode
(
self
):
for
i
,
subpath
in
enumerate
(
self
.
SAMPLES
):
path
=
os
.
path
.
join
(
self
.
path
,
subpath
)
os
.
mkdir
(
path
)
...
...
@@ -198,7 +199,7 @@ class UnicodePathsTests(unittest.TestCase):
unload
(
"test_trailing_slash"
)
def
test_main
(
verbose
=
None
):
run_unittest
(
ImportTest
,
Unicode
PathsTests
)
run_unittest
(
ImportTest
,
PathsTests
)
if
__name__
==
'__main__'
:
test_main
()
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