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
1672e10d
Kaydet (Commit)
1672e10d
authored
Eyl 21, 2008
tarafından
Hirokazu Yamamoto
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #3925: Ignores shutil.rmtree error on cygwin too.
Reviewed by Benjamin Peterson.
üst
56d380de
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
test_build_ext.py
Lib/distutils/tests/test_build_ext.py
+2
-2
No files found.
Lib/distutils/tests/test_build_ext.py
Dosyayı görüntüle @
1672e10d
...
@@ -62,8 +62,8 @@ class BuildExtTestCase(unittest.TestCase):
...
@@ -62,8 +62,8 @@ class BuildExtTestCase(unittest.TestCase):
# Get everything back to normal
# Get everything back to normal
test_support
.
unload
(
'xx'
)
test_support
.
unload
(
'xx'
)
sys
.
path
=
self
.
sys_path
sys
.
path
=
self
.
sys_path
# XXX on Windows the test leaves a directory with xx
.pyd
in TEMP
# XXX on Windows the test leaves a directory with xx
module
in TEMP
shutil
.
rmtree
(
self
.
tmp_dir
,
False
if
os
.
name
!=
"nt"
else
True
)
shutil
.
rmtree
(
self
.
tmp_dir
,
os
.
name
==
'nt'
or
sys
.
platform
==
'cygwin'
)
def
test_suite
():
def
test_suite
():
if
not
sysconfig
.
python_build
:
if
not
sysconfig
.
python_build
:
...
...
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