diff options
author | Nikita Sobolev <mail@sobolevn.me> | 2022-10-30 06:23:20 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-30 06:23:20 (GMT) |
commit | 76f989dc3e668d15b3ec9a90bf6530276530acac (patch) | |
tree | 627d40bcf2a29e819b5dfef1fc270c6848e09756 /Misc | |
parent | 3ac8c0ab6ee819a14b1c8e0992acbaf376a46058 (diff) | |
download | cpython-76f989dc3e668d15b3ec9a90bf6530276530acac.zip cpython-76f989dc3e668d15b3ec9a90bf6530276530acac.tar.gz cpython-76f989dc3e668d15b3ec9a90bf6530276530acac.tar.bz2 |
gh-98783: Fix crashes when `str` subclasses are used in `_PyUnicode_Equal` (#98806)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2022-10-28-14-52-55.gh-issue-98783.iG0kMs.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2022-10-28-14-52-55.gh-issue-98783.iG0kMs.rst b/Misc/NEWS.d/next/Core and Builtins/2022-10-28-14-52-55.gh-issue-98783.iG0kMs.rst new file mode 100644 index 0000000..da1e61e --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2022-10-28-14-52-55.gh-issue-98783.iG0kMs.rst @@ -0,0 +1,2 @@ +Fix multiple crashes in debug mode when ``str`` subclasses +are used instead of ``str`` itself. |