summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2024-06-24 09:17:25 (GMT)
committerGitHub <noreply@github.com>2024-06-24 09:17:25 (GMT)
commitc38e2f64d012929168dfef7363c9e48bd1a6c731 (patch)
tree2701e60be8291d9bb1e21b4ea1b0274590a206af /Misc/NEWS.d
parentfc297b4ba4c61febeb2d8f5d718f2955c6bbea0a (diff)
downloadcpython-c38e2f64d012929168dfef7363c9e48bd1a6c731.zip
cpython-c38e2f64d012929168dfef7363c9e48bd1a6c731.tar.gz
cpython-c38e2f64d012929168dfef7363c9e48bd1a6c731.tar.bz2
gh-119614: Fix truncation of strings with embedded null characters in Tkinter (GH-120909)
Now the null character is always represented as \xc0\x80 for Tcl_NewStringObj().
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Library/2024-06-23-17-50-40.gh-issue-119614.vwPGLB.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2024-06-23-17-50-40.gh-issue-119614.vwPGLB.rst b/Misc/NEWS.d/next/Library/2024-06-23-17-50-40.gh-issue-119614.vwPGLB.rst
new file mode 100644
index 0000000..d518265
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2024-06-23-17-50-40.gh-issue-119614.vwPGLB.rst
@@ -0,0 +1,2 @@
+Fix truncation of strings with embedded null characters in some internal
+operations in :mod:`tkinter`.