diff options
author | Guilherme Polo <ggpolo@gmail.com> | 2009-02-09 22:35:27 (GMT) |
---|---|---|
committer | Guilherme Polo <ggpolo@gmail.com> | 2009-02-09 22:35:27 (GMT) |
commit | 6691772ff6ce5dbad9f088a0aeef3aed149900a3 (patch) | |
tree | 70c1558af6b2b5a9346717aafbd0dc4b750096b9 | |
parent | b681df490ba2a06b0655e712d24f79110a41aefb (diff) | |
download | cpython-6691772ff6ce5dbad9f088a0aeef3aed149900a3.zip cpython-6691772ff6ce5dbad9f088a0aeef3aed149900a3.tar.gz cpython-6691772ff6ce5dbad9f088a0aeef3aed149900a3.tar.bz2 |
Merged revisions 69474 via svnmerge from
svn+ssh://pythondev/python/trunk
........
r69474 | guilherme.polo | 2009-02-09 18:57:45 -0200 (Mon, 09 Feb 2009) | 1 line
Enforcing Tk 8.3.1 requirement.
........
-rw-r--r-- | Modules/_tkinter.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/_tkinter.c b/Modules/_tkinter.c index 1f5a470..bc5523c 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. |