summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2024-01-10 10:50:51 (GMT)
committerGitHub <noreply@github.com>2024-01-10 10:50:51 (GMT)
commitb4a6bbdd7de8bdc43ea62ed4bbb610bf1cd64278 (patch)
tree4b9885a081e340c9ba06b3581ec705c41f4f046b /Misc
parent86b004358e892f6fbe0ba51f9c3e0e3ea53d7e44 (diff)
downloadcpython-b4a6bbdd7de8bdc43ea62ed4bbb610bf1cd64278.zip
cpython-b4a6bbdd7de8bdc43ea62ed4bbb610bf1cd64278.tar.gz
cpython-b4a6bbdd7de8bdc43ea62ed4bbb610bf1cd64278.tar.bz2
[3.11] gh-113877: Fix Tkinter method winfo_pathname() on 64-bit Windows (GH-113900) (GH-113902)
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. (cherry picked from commit 1b7e0024a16c1820f61c04a8a100498568410afd) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
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.