]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
dragfullwindows can have value 2
authorTarek Ziadé <ziade.tarek@gmail.com>
Thu, 19 Nov 2009 05:33:16 +0000 (05:33 +0000)
committerTarek Ziadé <ziade.tarek@gmail.com>
Thu, 19 Nov 2009 05:33:16 +0000 (05:33 +0000)
Lib/distutils/tests/test_msvc9compiler.py
Misc/NEWS

index 69a393caf8c259218e7025e8f6fe9421bb079239..1264854d0df08d19339c06179fb996f3c489da98 100644 (file)
@@ -46,7 +46,7 @@ class msvc9compilerTestCase(unittest.TestCase):
         # windows registeries versions.
         path = r'Control Panel\Desktop'
         v = Reg.get_value(path, u'dragfullwindows')
-        self.assertTrue(v in (u'0', u'1'))
+        self.assertTrue(v in (u'0', u'1', u'2'))
 
         import _winreg
         HKCU = _winreg.HKEY_CURRENT_USER
index e1841e813221580da0e94ca2fad1725cead27629..4616da8db0a4fe9d374b63e828e9cb2e0f882eeb 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -440,6 +440,9 @@ Core and Builtins
 Library
 -------
 
+- Issue #7354: distutils.tests.test_msvc9compiler - dragfullwindows can 
+  be 2.
+
 - Issue #5037: Proxy the __unicode__ special method instead to __unicode__
   instead of __str__.