summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorGiovanni Siragusa <siracusano@gmail.com>2024-12-02 13:18:30 (GMT)
committerGitHub <noreply@github.com>2024-12-02 13:18:30 (GMT)
commit31f16e427b545f66a9a45ea9dd6c933975ce0e4c (patch)
treeb474deff7609570a193b6232a2992dc03701af59 /Misc/NEWS.d
parent930ba0ce605eee9e3b992fa368b00a3f2b7dc4c1 (diff)
downloadcpython-31f16e427b545f66a9a45ea9dd6c933975ce0e4c.zip
cpython-31f16e427b545f66a9a45ea9dd6c933975ce0e4c.tar.gz
cpython-31f16e427b545f66a9a45ea9dd6c933975ce0e4c.tar.bz2
gh-109523: Raise a BlockingIOError if reading text from a non-blocking stream cannot immediately return bytes. (GH-122933)
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/C_API/2024-08-12-10-15-19.gh-issue-109523.S2c3fi.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/C_API/2024-08-12-10-15-19.gh-issue-109523.S2c3fi.rst b/Misc/NEWS.d/next/C_API/2024-08-12-10-15-19.gh-issue-109523.S2c3fi.rst
new file mode 100644
index 0000000..9d6b2e0
--- /dev/null
+++ b/Misc/NEWS.d/next/C_API/2024-08-12-10-15-19.gh-issue-109523.S2c3fi.rst
@@ -0,0 +1 @@
+Reading text from a non-blocking stream with ``read`` may now raise a :exc:`BlockingIOError` if the operation cannot immediately return bytes.