summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorLysandros Nikolaou <lisandrosnik@gmail.com>2023-06-15 16:21:24 (GMT)
committerGitHub <noreply@github.com>2023-06-15 16:21:24 (GMT)
commitd382ad49157b3802fc5619f68d96810def517869 (patch)
treea17121aac146c3797007502c55b6c105d298c7f2 /Misc
parent8f10140e74d141a0a894702044e213e6f0690d9c (diff)
downloadcpython-d382ad49157b3802fc5619f68d96810def517869.zip
cpython-d382ad49157b3802fc5619f68d96810def517869.tar.gz
cpython-d382ad49157b3802fc5619f68d96810def517869.tar.bz2
gh-105820: Fix tok_mode expression buffer in file & readline tokenizer (#105828)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2023-06-15-15-54-47.gh-issue-105831.-MC9Zs.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2023-06-15-15-54-47.gh-issue-105831.-MC9Zs.rst b/Misc/NEWS.d/next/Core and Builtins/2023-06-15-15-54-47.gh-issue-105831.-MC9Zs.rst
new file mode 100644
index 0000000..df42b9e
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2023-06-15-15-54-47.gh-issue-105831.-MC9Zs.rst
@@ -0,0 +1 @@
+Fix an f-string bug, where using a debug expression (the `=` sign) that appears in the last line of a file results to the debug buffer that holds the expression text being one character too small.