summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorPablo Galindo <Pablogsal@gmail.com>2021-03-29 22:38:51 (GMT)
committerGitHub <noreply@github.com>2021-03-29 22:38:51 (GMT)
commit09b90a037d18f5d4acdf1b14082e57bda78e85d3 (patch)
treedcdab5633c14b61546e3de07c232af3b5c379f83 /Misc
parentc8b5738810516df5722caf049003e9b319427bec (diff)
downloadcpython-09b90a037d18f5d4acdf1b14082e57bda78e85d3.zip
cpython-09b90a037d18f5d4acdf1b14082e57bda78e85d3.tar.gz
cpython-09b90a037d18f5d4acdf1b14082e57bda78e85d3.tar.bz2
bpo-43660: Fix crash when displaying exceptions with custom values for sys.stderr (GH-25075)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2021-03-29-19-50-34.bpo-43660.scTgag.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2021-03-29-19-50-34.bpo-43660.scTgag.rst b/Misc/NEWS.d/next/Core and Builtins/2021-03-29-19-50-34.bpo-43660.scTgag.rst
new file mode 100644
index 0000000..9841950
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2021-03-29-19-50-34.bpo-43660.scTgag.rst
@@ -0,0 +1,3 @@
+Fix crash that happens when replacing ``sys.stderr`` with a callable that
+can remove the object while an exception is being printed. Patch by Pablo
+Galindo.