summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next
diff options
context:
space:
mode:
authorYu Liu <yuki.liu@utexas.edu>2022-04-16 14:34:48 (GMT)
committerGitHub <noreply@github.com>2022-04-16 14:34:48 (GMT)
commit9300b6d72948b94c0924a75ea14c6298156522d0 (patch)
treed8de4f11c8ff0a7a12993c300399cb5187229832 /Misc/NEWS.d/next
parent95573ade42d1635dd9b69380117cbb47b6790772 (diff)
downloadcpython-9300b6d72948b94c0924a75ea14c6298156522d0.zip
cpython-9300b6d72948b94c0924a75ea14c6298156522d0.tar.gz
cpython-9300b6d72948b94c0924a75ea14c6298156522d0.tar.bz2
gh-91595: fix the comparison of character and integer by using ord() (#91596)
* fix the comparison of character and integer by using ord() * 📜🤖 Added by blurb_it. Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com>
Diffstat (limited to 'Misc/NEWS.d/next')
-rw-r--r--Misc/NEWS.d/next/Library/2022-04-16-05-12-13.gh-issue-91595.CocJBv.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2022-04-16-05-12-13.gh-issue-91595.CocJBv.rst b/Misc/NEWS.d/next/Library/2022-04-16-05-12-13.gh-issue-91595.CocJBv.rst
new file mode 100644
index 0000000..637079a
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2022-04-16-05-12-13.gh-issue-91595.CocJBv.rst
@@ -0,0 +1 @@
+Fix the comparison of character and integer inside :func:`Tools.gdb.libpython.write_repr`. Patch by Yu Liu.