]> granicus.if.org Git - python/commitdiff
Merged revisions 76399 via svnmerge from
authorTarek Ziadé <ziade.tarek@gmail.com>
Thu, 19 Nov 2009 05:39:00 +0000 (05:39 +0000)
committerTarek Ziadé <ziade.tarek@gmail.com>
Thu, 19 Nov 2009 05:39:00 +0000 (05:39 +0000)
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
........

Lib/distutils/tests/test_msvc9compiler.py
Misc/NEWS

index 7cf1a12ec7a02d1902df370b5cb45c2ab20a17a7..05d34e604c27b38bf65ce84db6b43cc2e2651ac0 100644 (file)
@@ -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
index bc1d91a16c4b1b12e58b93d94cfe7b47b5d6c764..a455a76cfc8236522cf4018ae404a3d3dae09775 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -137,6 +137,9 @@ C-API
 Library
 -------
 
+- Issue #7354: distutils.tests.test_msvc9compiler - dragfullwindows can 
+  be 2.
+
 - Issue #5037: Proxy the __unicode__ special method instead to __unicode__
   instead of __str__.