[Python-checkins] cpython (2.7): 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/8ab077c22fbf
changeset:   95739:8ab077c22fbf
branch:      2.7
parent:      95731:17702fd8ac0d
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
@@ -96,7 +96,7 @@
 #error "unsupported Tcl configuration"
 #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