diff options
author | Nikita Sobolev <mail@sobolevn.me> | 2022-11-03 03:03:12 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-03 03:03:12 (GMT) |
commit | 2cfcaf5af602b297fc90086de4d8ac980c7891e2 (patch) | |
tree | 530ba8bd333f6199f161af18a7f1d2d8ed569ffd /Misc | |
parent | 26720fffd090929fd2058b73e5970cc520b30aef (diff) | |
download | cpython-2cfcaf5af602b297fc90086de4d8ac980c7891e2.zip cpython-2cfcaf5af602b297fc90086de4d8ac980c7891e2.tar.gz cpython-2cfcaf5af602b297fc90086de4d8ac980c7891e2.tar.bz2 |
gh-98999: Raise `ValueError` in `_pyio` on closed buffers (gh-99009)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2022-11-02-18-27-13.gh-issue-98999.Ai2KDh.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2022-11-02-18-27-13.gh-issue-98999.Ai2KDh.rst b/Misc/NEWS.d/next/Library/2022-11-02-18-27-13.gh-issue-98999.Ai2KDh.rst new file mode 100644 index 0000000..1da623b --- /dev/null +++ b/Misc/NEWS.d/next/Library/2022-11-02-18-27-13.gh-issue-98999.Ai2KDh.rst @@ -0,0 +1,2 @@ +Now :mod:`_pyio` is consistent with :mod:`_io` in raising ``ValueError`` +when executing methods over closed buffers. |