[Python-checkins] cpython (3.4): 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/7f1622478d17
changeset:   95740:7f1622478d17
branch:      3.4
parent:      95732:cdadde8396a4
user:        Serhiy Storchaka <storchaka at gmail.com>
date:        Mon Apr 20 14:05:37 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
@@ -69,7 +69,7 @@
 #error "Tk older than 8.3.1 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