From: Guilherme Polo Date: Mon, 9 Feb 2009 20:57:45 +0000 (+0000) Subject: Enforcing Tk 8.3.1 requirement. X-Git-Tag: v2.7a1~2065 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c5eba1e4f72e36368c52f56ebf7a5dde00ca3ee0;p=thirdparty%2FPython%2Fcpython.git Enforcing Tk 8.3.1 requirement. --- diff --git a/Modules/_tkinter.c b/Modules/_tkinter.c index 62bcff41dcef..d0d29ea4b719 100644 --- a/Modules/_tkinter.c +++ b/Modules/_tkinter.c @@ -76,8 +76,8 @@ Copyright (C) 1994 Steen Lumholt. #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.