diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-03-29 23:03:16 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-29 23:03:16 (GMT) |
commit | ba7f8638f93b5d999b25d8556ca19bdc2e12f359 (patch) | |
tree | cdb59e3f098d7503faef3ec7a2aeba3a32ff4d4a /Misc/NEWS.d/next/Core and Builtins | |
parent | 20b2f2bfc2e72c6d9ed983d1f0aa7a141e9b3fc3 (diff) | |
download | cpython-ba7f8638f93b5d999b25d8556ca19bdc2e12f359.zip cpython-ba7f8638f93b5d999b25d8556ca19bdc2e12f359.tar.gz cpython-ba7f8638f93b5d999b25d8556ca19bdc2e12f359.tar.bz2 |
bpo-43660: Fix crash when displaying exceptions with custom values for sys.stderr (GH-25075)
(cherry picked from commit 09b90a037d18f5d4acdf1b14082e57bda78e85d3)
Co-authored-by: Pablo Galindo <Pablogsal@gmail.com>
Diffstat (limited to 'Misc/NEWS.d/next/Core and Builtins')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2021-03-29-19-50-34.bpo-43660.scTgag.rst | 3 |
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. |