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
0c25b45b
Kaydet (Commit)
0c25b45b
authored
Eyl 18, 2010
tarafından
Senthil Kumaran
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Skip the distutils mode test on Windows OS.
üst
90387ff4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
test_dir_util.py
Lib/distutils/tests/test_dir_util.py
+3
-0
No files found.
Lib/distutils/tests/test_dir_util.py
Dosyayı görüntüle @
0c25b45b
...
...
@@ -3,6 +3,7 @@ import unittest
import
os
import
stat
import
shutil
import
sys
from
distutils.dir_util
import
(
mkpath
,
remove_tree
,
create_tree
,
copy_tree
,
ensure_relative
)
...
...
@@ -49,6 +50,8 @@ class DirUtilTestCase(support.TempdirManager, unittest.TestCase):
wanted
=
[
"removing '
%
s' (and everything under it)"
%
self
.
root_target
]
self
.
assertEquals
(
self
.
_logs
,
wanted
)
@unittest.skipIf
(
sys
.
platform
.
startswith
(
'win'
),
"This test is only appropriate for POSIX-like systems."
)
def
test_mkpath_with_custom_mode
(
self
):
mkpath
(
self
.
target
,
0
o700
)
self
.
assertEqual
(
stat
.
S_IMODE
(
os
.
stat
(
self
.
target
)
.
st_mode
),
0
o700
)
...
...
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