summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next/C API
diff options
context:
space:
mode:
authorMalcolm Smith <smith@chaquo.com>2024-07-31 00:21:43 (GMT)
committerGitHub <noreply@github.com>2024-07-31 00:21:43 (GMT)
commit82db5728136ebec3a1d221570b810b4128a21255 (patch)
treee06e5278ecbd2af6a4e7ff830f1a9c87a1d862f5 /Misc/NEWS.d/next/C API
parent29c04dfa2718dd25ad8b381a1027045b312f9739 (diff)
downloadcpython-82db5728136ebec3a1d221570b810b4128a21255.zip
cpython-82db5728136ebec3a1d221570b810b4128a21255.tar.gz
cpython-82db5728136ebec3a1d221570b810b4128a21255.tar.bz2
gh-116622: Fix testPyObjectPrintOSError on Android (#122487)
Adds extra handling for way BSD/Android return errors from calls to fwrite.
Diffstat (limited to 'Misc/NEWS.d/next/C API')
-rw-r--r--Misc/NEWS.d/next/C API/2024-07-30-23-48-26.gh-issue-116622.yTTtil.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/C API/2024-07-30-23-48-26.gh-issue-116622.yTTtil.rst b/Misc/NEWS.d/next/C API/2024-07-30-23-48-26.gh-issue-116622.yTTtil.rst
new file mode 100644
index 0000000..7ae0f83
--- /dev/null
+++ b/Misc/NEWS.d/next/C API/2024-07-30-23-48-26.gh-issue-116622.yTTtil.rst
@@ -0,0 +1,3 @@
+Make :any:`PyObject_Print` work around a bug in Android and OpenBSD which
+prevented it from throwing an exception when trying to write to a read-only
+stream.