[Python-checkins] r69474 - python/trunk/Modules/_tkinter.c

guilherme.polo python-checkins at python.org
Mon Feb 9 21:57:45 CET 2009


Author: guilherme.polo
Date: Mon Feb  9 21:57:45 2009
New Revision: 69474

Log:
Enforcing Tk 8.3.1 requirement.

Modified:
   python/trunk/Modules/_tkinter.c

Modified: python/trunk/Modules/_tkinter.c
==============================================================================
--- python/trunk/Modules/_tkinter.c	(original)
+++ python/trunk/Modules/_tkinter.c	Mon Feb  9 21:57:45 2009
@@ -76,8 +76,8 @@
 #define CONST
 #endif
 
-#if TK_VERSION_HEX < 0x08020002
-#error "Tk older than 8.2 not supported"
+#if TK_VERSION_HEX < 0x08030102
+#error "Tk older than 8.3.1 not supported"
 #endif
 
 /* Unicode conversion assumes that Tcl_UniChar is two bytes.


More information about the Python-checkins mailing list