summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorZackery Spytz <zspytz@gmail.com>2022-11-25 12:55:26 (GMT)
committerGitHub <noreply@github.com>2022-11-25 12:55:26 (GMT)
commitd386115039e75c332c8471c239cf7dc5dee791a7 (patch)
tree8a75a98e6bffea8269616d9e16bef7fd0b6277ae /Misc
parentb1dcdefc3abf496a3e37e12b85dd9959f5b70341 (diff)
downloadcpython-d386115039e75c332c8471c239cf7dc5dee791a7.zip
cpython-d386115039e75c332c8471c239cf7dc5dee791a7.tar.gz
cpython-d386115039e75c332c8471c239cf7dc5dee791a7.tar.bz2
bpo-38031: Fix a possible assertion failure in _io.FileIO() (#GH-5688)
Diffstat (limited to 'Misc')
-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.