[Python-checkins] r76401 - in python/branches/py3k: Lib/distutils/tests/test_msvc9compiler.py Misc/NEWS
tarek.ziade
python-checkins at python.org
Thu Nov 19 06:39:00 CET 2009
Author: tarek.ziade
Date: Thu Nov 19 06:39:00 2009
New Revision: 76401
Log:
Merged revisions 76399 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r76399 | tarek.ziade | 2009年11月19日 06:33:16 +0100 (2009年11月19日) | 1 line
dragfullwindows can have value 2
........
Modified:
python/branches/py3k/ (props changed)
python/branches/py3k/Lib/distutils/tests/test_msvc9compiler.py
python/branches/py3k/Misc/NEWS
Modified: python/branches/py3k/Lib/distutils/tests/test_msvc9compiler.py
==============================================================================
--- python/branches/py3k/Lib/distutils/tests/test_msvc9compiler.py (original)
+++ python/branches/py3k/Lib/distutils/tests/test_msvc9compiler.py Thu Nov 19 06:39:00 2009
@@ -46,7 +46,7 @@
# 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
Modified: python/branches/py3k/Misc/NEWS
==============================================================================
--- python/branches/py3k/Misc/NEWS (original)
+++ python/branches/py3k/Misc/NEWS Thu Nov 19 06:39:00 2009
@@ -137,6 +137,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