diff options
author | Tarek Ziadé <ziade.tarek@gmail.com> | 2009-11-19 05:39:00 +0000 |
---|---|---|
committer | Tarek Ziadé <ziade.tarek@gmail.com> | 2009-11-19 05:39:00 +0000 |
commit | 26afd485ce46b6143a8568bebf648ca0d3f525b2 (patch) | |
tree | e3d326f4316431297bde3db82f7e7470353df712 /Lib/distutils/tests/test_msvc9compiler.py | |
parent | 32019774b98d0b140cec1f16e46e4268d0f2cf7f (diff) | |
download | cpython-git-26afd485ce46b6143a8568bebf648ca0d3f525b2.tar.gz |
Merged revisions 76399 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r76399 | tarek.ziade | 2009-11-19 06:33:16 +0100 (Thu, 19 Nov 2009) | 1 line
dragfullwindows can have value 2
........
Diffstat (limited to 'Lib/distutils/tests/test_msvc9compiler.py')
-rw-r--r-- | Lib/distutils/tests/test_msvc9compiler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/tests/test_msvc9compiler.py b/Lib/distutils/tests/test_msvc9compiler.py index 7cf1a12ec7..05d34e604c 100644 --- a/Lib/distutils/tests/test_msvc9compiler.py +++ b/Lib/distutils/tests/test_msvc9compiler.py @@ -46,7 +46,7 @@ class msvc9compilerTestCase(unittest.TestCase): # windows registeries versions. path = r'Control Panel\Desktop' v = Reg.get_value(path, 'dragfullwindows') - self.assertTrue(v in ('0', '1')) + self.assertTrue(v in ('0', '1', '2')) import winreg HKCU = winreg.HKEY_CURRENT_USER |