diff options
author | Tarek Ziadé <ziade.tarek@gmail.com> | 2009-11-19 05:33:16 +0000 |
---|---|---|
committer | Tarek Ziadé <ziade.tarek@gmail.com> | 2009-11-19 05:33:16 +0000 |
commit | 39de1fc5c8715fa69d96501e100b360c3b56d22e (patch) | |
tree | 1372aaba2e43058015565fd241fc3094d397a87e | |
parent | dc3c239b1ef694b36c79008cdb86ed18852f63c1 (diff) | |
download | cpython-git-39de1fc5c8715fa69d96501e100b360c3b56d22e.tar.gz |
dragfullwindows can have value 2
-rw-r--r-- | Lib/distutils/tests/test_msvc9compiler.py | 2 | ||||
-rw-r--r-- | Misc/NEWS | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/Lib/distutils/tests/test_msvc9compiler.py b/Lib/distutils/tests/test_msvc9compiler.py index 69a393caf8..1264854d0d 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 @@ -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__. |