summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2022-11-25 13:18:41 (GMT)
committerGitHub <noreply@github.com>2022-11-25 13:18:41 (GMT)
commitc42681546a06241f901cb4029905ae070100d36d (patch)
tree2b338049500e604bf5891c5114a519e8449a8ce3 /Misc/NEWS.d
parent59241fe2a223a1202728169984a8793a88e4abb7 (diff)
downloadcpython-c42681546a06241f901cb4029905ae070100d36d.zip
cpython-c42681546a06241f901cb4029905ae070100d36d.tar.gz
cpython-c42681546a06241f901cb4029905ae070100d36d.tar.bz2
bpo-38031: Fix a possible assertion failure in _io.FileIO() (GH-GH-5688)
(cherry picked from commit d386115039e75c332c8471c239cf7dc5dee791a7) Co-authored-by: Zackery Spytz <zspytz@gmail.com>
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2019-09-04-19-09-49.bpo-38031.Yq4L72.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2019-09-04-19-09-49.bpo-38031.Yq4L72.rst b/Misc/NEWS.d/next/Core and Builtins/2019-09-04-19-09-49.bpo-38031.Yq4L72.rst
new file mode 100644
index 0000000..b596437
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2019-09-04-19-09-49.bpo-38031.Yq4L72.rst
@@ -0,0 +1,2 @@
+Fix a possible assertion failure in :class:`io.FileIO` when the opener
+returns an invalid file descriptor.