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
bea8ae79
Kaydet (Commit)
bea8ae79
authored
Eyl 13, 2010
tarafından
Hirokazu Yamamoto
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
get_build_version() is needed even where sys.platform != "win32".
Try to fix buildbot error in other way.
üst
4cc96a16
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
4 deletions
+8
-4
test_msvc9compiler.py
Lib/distutils/tests/test_msvc9compiler.py
+8
-4
No files found.
Lib/distutils/tests/test_msvc9compiler.py
Dosyayı görüntüle @
bea8ae79
...
...
@@ -62,10 +62,14 @@ _CLEANED_MANIFEST = """\
if
sys
.
platform
==
"win32"
:
from
distutils.msvccompiler
import
get_build_version
@unittest.skipUnless
(
sys
.
platform
==
"win32"
,
"These tests are only for win32"
)
@unittest.skipUnless
(
get_build_version
()
>=
8.0
,
"These tests are only for"
" MSVC8.0 or above"
)
if
get_build_version
()
>=
8.0
:
SKIP_MESSAGE
=
None
else
:
SKIP_MESSAGE
=
"These tests are only for MSVC8.0 or above"
else
:
SKIP_MESSAGE
=
"These tests are only for win32"
@unittest.skipUnless
(
SKIP_MESSAGE
is
None
,
SKIP_MESSAGE
)
class
msvc9compilerTestCase
(
support
.
TempdirManager
,
unittest
.
TestCase
):
...
...
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