diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-04-20 11:05:37 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-04-20 11:05:37 (GMT) |
commit | 77e8311deb1db0e823a9ac0d16ce3c0d557453fa (patch) | |
tree | 77184500b4c11f62c3609f293be3c492c44282d0 /Modules/_tkinter.c | |
parent | 2b0d2007a1a51a15a67dc7297cf5e21c8767b563 (diff) | |
download | cpython-77e8311deb1db0e823a9ac0d16ce3c0d557453fa.zip cpython-77e8311deb1db0e823a9ac0d16ce3c0d557453fa.tar.gz cpython-77e8311deb1db0e823a9ac0d16ce3c0d557453fa.tar.bz2 |
Issue #16840: Turn on support of bignums only in final release of Tcl 8.5.
Diffstat (limited to 'Modules/_tkinter.c')
-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 e31afae..491a8fe 100644 --- a/Modules/_tkinter.c +++ b/Modules/_tkinter.c @@ -69,7 +69,7 @@ Copyright (C) 1994 Steen Lumholt. #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 |