[Python-checkins] r81700 - in python/trunk: Misc/NEWS Tools/msi/msi.py

martin.v.loewis python-checkins at python.org
Fri Jun 4 21:15:32 CEST 2010


Author: martin.v.loewis
Date: Fri Jun  4 21:15:32 2010
New Revision: 81700

Log:
Display installer warning that Windows 2000 won't 
be supported in future releases.

Modified:
   python/trunk/Misc/NEWS
   python/trunk/Tools/msi/msi.py

Modified: python/trunk/Misc/NEWS
==============================================================================
--- python/trunk/Misc/NEWS	(original)
+++ python/trunk/Misc/NEWS	Fri Jun  4 21:15:32 2010
@@ -120,6 +120,9 @@
 Build
 -----
 
+- Display installer warning that Windows 2000 won't be supported in future
+  releases.
+
 - Issues #1759169, #8864: Drop _XOPEN_SOURCE on Solaris, define it for 
   multiprocessing only.
 

Modified: python/trunk/Tools/msi/msi.py
==============================================================================
--- python/trunk/Tools/msi/msi.py	(original)
+++ python/trunk/Tools/msi/msi.py	Fri Jun  4 21:15:32 2010
@@ -503,9 +503,9 @@
       "    would still be Python for DOS.")
 
     c = exit_dialog.text("warning", 135, 200, 220, 40, 0x30003,
-            "{\\VerdanaRed9}Warning: Python 2.5.x is the last "
-            "Python release for Windows 9x.")
-    c.condition("Hide", "NOT Version9X")
+            "{\\VerdanaRed9}Warning: Python 2.7.x is the last "
+            "Python release for Windows 2000.")
+    c.condition("Hide", "VersionNT > 500")
 
     exit_dialog.text("Description", 135, 235, 220, 20, 0x30003,
                "Click the Finish button to exit the Installer.")


More information about the Python-checkins mailing list