]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
gh-103194: Fix Tkinter’s Tcl value type handling for Tcl 8.7/9.0 (GH-103846)
authorChristopher Chavez <chrischavez@gmx.us>
Fri, 31 May 2024 08:23:53 +0000 (03:23 -0500)
committerGitHub <noreply@github.com>
Fri, 31 May 2024 08:23:53 +0000 (11:23 +0300)
commit94e9585e99abc2d060cedc77b3c03e06b4a0a9c4
tree088df3b52a427ff63216258c7ca862968d56ec7a
parentb278c723d79a238b14e99908e83f4b1b6a39ed3d
gh-103194: Fix Tkinter’s Tcl value type handling for Tcl 8.7/9.0 (GH-103846)

Some of standard Tcl types were renamed, removed, or no longer
registered in Tcl 8.7/9.0. This change fixes automatic conversion of Tcl
values to Python values to avoid returning a Tcl_Obj where the primary
Python types (int, bool, str, bytes) were returned in older Tcl.
Misc/NEWS.d/next/Library/2023-04-24-05-34-23.gh-issue-103194.GwBwWL.rst [new file with mode: 0644]
Modules/_tkinter.c