From: Tarek Ziadé Date: Thu, 19 Nov 2009 05:33:16 +0000 (+0000) Subject: dragfullwindows can have value 2 X-Git-Tag: v2.7a1~77 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=39de1fc5c8715fa69d96501e100b360c3b56d22e;p=thirdparty%2FPython%2Fcpython.git dragfullwindows can have value 2 --- diff --git a/Lib/distutils/tests/test_msvc9compiler.py b/Lib/distutils/tests/test_msvc9compiler.py index 69a393caf8c2..1264854d0df0 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, 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 diff --git a/Misc/NEWS b/Misc/NEWS index e1841e813221..4616da8db0a4 100644 --- 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__.