summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-04-02 15:46:50 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-04-02 15:46:50 (GMT)
commitea134da9297b14bfa8dbf3a45149bc2df28c1eb9 (patch)
tree0637056758d2fd85b1bf8cf867fb84e02fceea45 /Misc
parent8e44aa5ae475be3e2944daee4d98ca36e466dd6a (diff)
downloadcpython-ea134da9297b14bfa8dbf3a45149bc2df28c1eb9.zip
cpython-ea134da9297b14bfa8dbf3a45149bc2df28c1eb9.tar.gz
cpython-ea134da9297b14bfa8dbf3a45149bc2df28c1eb9.tar.bz2
Issue #16840: Tkinter now supports 64-bit integers added in Tcl 8.4 and
arbitrary precision integers added in Tcl 8.5.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 66ecff1..6730e9f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -24,6 +24,9 @@ Core and Builtins
Library
-------
+- Issue #16840: Tkinter now supports 64-bit integers added in Tcl 8.4 and
+ arbitrary precision integers added in Tcl 8.5.
+
- Issue #23834: Fix socket.sendto(), use the C Py_ssize_t type to store the
result of sendto() instead of the C int type.