summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2013-09-04 22:22:24 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2013-09-04 22:22:24 (GMT)
commite1040e276b11f21b7007c139269c38d5eba04f5e (patch)
treeaf55807a777fc84f9f8e9d2f7dc0ecfcfc62b22d /Misc
parente93b63b74b101c65807af7d9311de70012a2e49d (diff)
downloadcpython-e1040e276b11f21b7007c139269c38d5eba04f5e.zip
cpython-e1040e276b11f21b7007c139269c38d5eba04f5e.tar.gz
cpython-e1040e276b11f21b7007c139269c38d5eba04f5e.tar.bz2
Issue #18909: Fix _tkinter.tkapp.interpaddr() on Windows 64-bit, don't cast
64-bit pointer to long (32 bits).
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 9a3ace5..c7dbe29 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -66,6 +66,9 @@ Core and Builtins
Library
-------
+- Issue #18909: Fix _tkinter.tkapp.interpaddr() on Windows 64-bit, don't cast
+ 64-bit pointer to long (32 bits).
+
- Issue #18876: The FileIO.mode attribute now better reflects the actual mode
under which the file was opened. Patch by Erik Bray.