Merged revisions 76399 via svnmerge from

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
........
This commit is contained in:
Tarek Ziadé 2009-11-19 05:39:00 +00:00
parent 32019774b9
commit 26afd485ce
2 changed files with 4 additions and 1 deletions

View File

@ -46,7 +46,7 @@ class msvc9compilerTestCase(unittest.TestCase):
# windows registeries versions. # windows registeries versions.
path = r'Control Panel\Desktop' path = r'Control Panel\Desktop'
v = Reg.get_value(path, 'dragfullwindows') v = Reg.get_value(path, 'dragfullwindows')
self.assertTrue(v in ('0', '1')) self.assertTrue(v in ('0', '1', '2'))
import winreg import winreg
HKCU = winreg.HKEY_CURRENT_USER HKCU = winreg.HKEY_CURRENT_USER

View File

@ -137,6 +137,9 @@ C-API
Library Library
------- -------
- Issue #7354: distutils.tests.test_msvc9compiler - dragfullwindows can
be 2.
- Issue #5037: Proxy the __unicode__ special method instead to __unicode__ - Issue #5037: Proxy the __unicode__ special method instead to __unicode__
instead of __str__. instead of __str__.