[Python-checkins] r76399 - in python/trunk: Lib/distutils/tests/test_msvc9compiler.py Misc/NEWS

tarek.ziade python-checkins at python.org
Thu Nov 19 06:33:17 CET 2009


Author: tarek.ziade
Date: Thu Nov 19 06:33:16 2009
New Revision: 76399

Log:
dragfullwindows can have value 2

Modified:
   python/trunk/Lib/distutils/tests/test_msvc9compiler.py
   python/trunk/Misc/NEWS

Modified: python/trunk/Lib/distutils/tests/test_msvc9compiler.py
==============================================================================
--- python/trunk/Lib/distutils/tests/test_msvc9compiler.py	(original)
+++ python/trunk/Lib/distutils/tests/test_msvc9compiler.py	Thu Nov 19 06:33:16 2009
@@ -46,7 +46,7 @@
         # 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

Modified: python/trunk/Misc/NEWS
==============================================================================
--- python/trunk/Misc/NEWS	(original)
+++ python/trunk/Misc/NEWS	Thu Nov 19 06:33:16 2009
@@ -440,6 +440,9 @@
 Library
 -------
 
+- Issue #7354: distutils.tests.test_msvc9compiler - dragfullwindows can 
+  be 2.
+
 - Issue #5037: Proxy the __unicode__ special method instead to __unicode__
   instead of __str__.
 


More information about the Python-checkins mailing list