summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorZackery Spytz <zspytz@gmail.com>2019-05-08 16:31:23 (GMT)
committerNick Coghlan <ncoghlan@gmail.com>2019-05-08 16:31:23 (GMT)
commit94a64e9cd411a87514b68082c1c437eb3b49dfb9 (patch)
treee7888a142edbe85f294e5859077ecd7400ef4675 /Misc
parent85225b6a58a516c50c055d5114668ed2fcdcda8c (diff)
downloadcpython-94a64e9cd411a87514b68082c1c437eb3b49dfb9.zip
cpython-94a64e9cd411a87514b68082c1c437eb3b49dfb9.tar.gz
cpython-94a64e9cd411a87514b68082c1c437eb3b49dfb9.tar.bz2
bpo-24048: Save the live exception during import.c's remove_module() (GH-13005)
Save the live exception during the course of remove_module().
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2019-04-29-03-27-22.bpo-24048.vXxUDQ.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2019-04-29-03-27-22.bpo-24048.vXxUDQ.rst b/Misc/NEWS.d/next/Core and Builtins/2019-04-29-03-27-22.bpo-24048.vXxUDQ.rst
new file mode 100644
index 0000000..27c86a4
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2019-04-29-03-27-22.bpo-24048.vXxUDQ.rst
@@ -0,0 +1 @@
+Save the live exception during import.c's ``remove_module()``.