[Python-checkins] cpython (merge 3.4 -> default): Issue #16840: Turn on support of bignums only in final release of Tcl 8.5.

serhiy.storchaka python-checkins at python.org
Mon Apr 20 13:08:22 CEST 2015


https://hg.python.org/cpython/rev/7a7f09528866
changeset:   95741:7a7f09528866
parent:      95738:09fa20da2872
parent:      95740:7f1622478d17
user:        Serhiy Storchaka <storchaka at gmail.com>
date:        Mon Apr 20 14:07:41 2015 +0300
summary:
  Issue #16840: Turn on support of bignums only in final release of Tcl 8.5.

files:
  Modules/_tkinter.c |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Modules/_tkinter.c b/Modules/_tkinter.c
--- a/Modules/_tkinter.c
+++ b/Modules/_tkinter.c
@@ -56,7 +56,7 @@
 #error "Tk older than 8.4 not supported"
 #endif
 
-#if TK_VERSION_HEX >= 0x08050000
+#if TK_VERSION_HEX >= 0x08050002
 #define HAVE_LIBTOMMAMTH
 #include <tclTomMath.h>
 #endif

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list