summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2019-05-19 15:56:15 (GMT)
committerGitHub <noreply@github.com>2019-05-19 15:56:15 (GMT)
commit7c59362a15dfce538512ff1fce4e07d33a925cfb (patch)
treeab4a3d9933d81c3e5b227419fa1c39afae6c6d37 /Misc
parentf4e1babf44792bdeb0c01da96821ba0800a51fd8 (diff)
downloadcpython-7c59362a15dfce538512ff1fce4e07d33a925cfb.zip
cpython-7c59362a15dfce538512ff1fce4e07d33a925cfb.tar.gz
cpython-7c59362a15dfce538512ff1fce4e07d33a925cfb.tar.bz2
bpo-29183: Fix double exceptions in wsgiref.handlers.BaseHandler (GH-12914)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2019-04-22-22-55-29.bpo-29183.MILvsk.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-04-22-22-55-29.bpo-29183.MILvsk.rst b/Misc/NEWS.d/next/Library/2019-04-22-22-55-29.bpo-29183.MILvsk.rst
new file mode 100644
index 0000000..1d19f19
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2019-04-22-22-55-29.bpo-29183.MILvsk.rst
@@ -0,0 +1,3 @@
+Fix double exceptions in :class:`wsgiref.handlers.BaseHandler` by calling
+its :meth:`~wsgiref.handlers.BaseHandler.close` method only when no
+exception is raised.