summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2024-01-10 10:36:03 (GMT)
committerGitHub <noreply@github.com>2024-01-10 10:36:03 (GMT)
commit1b7e0024a16c1820f61c04a8a100498568410afd (patch)
treed8c95f65e9ab7081fb50a7d62472b5c0a6816691 /Misc
parent5d384b0468b35b393f8ae2d3149d13ff607c9501 (diff)
downloadcpython-1b7e0024a16c1820f61c04a8a100498568410afd.zip
cpython-1b7e0024a16c1820f61c04a8a100498568410afd.tar.gz
cpython-1b7e0024a16c1820f61c04a8a100498568410afd.tar.bz2
gh-113877: Fix Tkinter method winfo_pathname() on 64-bit Windows (GH-113900)
winfo_id() converts the result of "winfo id" command to integer, but "winfo pathname" command requires an argument to be a hexadecimal number on Win64.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2024-01-10-12-03-38.gh-issue-113877.RxKlrQ.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2024-01-10-12-03-38.gh-issue-113877.RxKlrQ.rst b/Misc/NEWS.d/next/Library/2024-01-10-12-03-38.gh-issue-113877.RxKlrQ.rst
new file mode 100644
index 0000000..173e185
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2024-01-10-12-03-38.gh-issue-113877.RxKlrQ.rst
@@ -0,0 +1 @@
+Fix :mod:`tkinter` method ``winfo_pathname()`` on 64-bit Windows.