diff options
author | sobolevn <mail@sobolevn.me> | 2024-11-25 17:32:02 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-25 17:32:02 (GMT) |
commit | a2ee89968299fc4f0da4b5a4165025b941213ba5 (patch) | |
tree | 081541a20bc25965fde2f1e4feb2aba6493b35d8 /Misc | |
parent | d3da04bfc91ec065fe587451409102213af0e57c (diff) | |
download | cpython-a2ee89968299fc4f0da4b5a4165025b941213ba5.zip cpython-a2ee89968299fc4f0da4b5a4165025b941213ba5.tar.gz cpython-a2ee89968299fc4f0da4b5a4165025b941213ba5.tar.bz2 |
gh-127182: Fix `io.StringIO.__setstate__` crash when `None` is the first value (#127219)
Co-authored-by: Victor Stinner <vstinner@python.org>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2024-11-24-14-20-17.gh-issue-127182.WmfY2g.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2024-11-24-14-20-17.gh-issue-127182.WmfY2g.rst b/Misc/NEWS.d/next/Library/2024-11-24-14-20-17.gh-issue-127182.WmfY2g.rst new file mode 100644 index 0000000..2cc46ca --- /dev/null +++ b/Misc/NEWS.d/next/Library/2024-11-24-14-20-17.gh-issue-127182.WmfY2g.rst @@ -0,0 +1,2 @@ +Fix :meth:`!io.StringIO.__setstate__` crash, when :const:`None` was passed as +the first value. |