mirror of
https://github.com/python/cpython.git
synced 2025-11-25 21:11:09 +00:00
Added skip for old MSVC.
This commit is contained in:
parent
fc9ea97a18
commit
bb7467f6e3
1 changed files with 4 additions and 0 deletions
|
|
@ -34,6 +34,10 @@ class msvc9compilerTestCase(unittest.TestCase):
|
|||
if sys.platform != 'win32':
|
||||
# this test is only for win32
|
||||
return
|
||||
from distutils.msvccompiler import get_build_version
|
||||
if get_build_version() < 8.0:
|
||||
# this test is only for MSVC8.0 or above
|
||||
return
|
||||
|
||||
from distutils.msvc9compiler import Reg
|
||||
self.assertRaises(KeyError, Reg.get_value, 'xxx', 'xxx')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue