diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-04-20 11:07:41 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-04-20 11:07:41 (GMT) |
commit | 629d697f969cef4e5b5ec986700ac10908a0d075 (patch) | |
tree | f86b0d1d2bd57262a782b895e050fdfbde9627a8 /Modules | |
parent | 1acdb95965928a103dc4222c245931daf7c3fedf (diff) | |
parent | 77e8311deb1db0e823a9ac0d16ce3c0d557453fa (diff) | |
download | cpython-629d697f969cef4e5b5ec986700ac10908a0d075.zip cpython-629d697f969cef4e5b5ec986700ac10908a0d075.tar.gz cpython-629d697f969cef4e5b5ec986700ac10908a0d075.tar.bz2 |
Issue #16840: Turn on support of bignums only in final release of Tcl 8.5.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_tkinter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_tkinter.c b/Modules/_tkinter.c index 241c1a0..3f58353 100644 --- a/Modules/_tkinter.c +++ b/Modules/_tkinter.c @@ -56,7 +56,7 @@ Copyright (C) 1994 Steen Lumholt. #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 |