summaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorCheryl Sabella <cheryl.sabella@gmail.com>2018-09-25 19:00:08 -0400
committerVinay Sajip <vinay_sajip@yahoo.co.uk>2018-09-26 00:00:08 +0100
commitd345bb4d9b6e16c681cd8a4e1fff94ecd6b0bb09 (patch)
tree270c58e201787cd118f29c2650cd6dfa605f27e3 /Misc
parentfad6af2744c0b022568f7f4a8afc93fed056d4db (diff)
downloadcpython-git-d345bb4d9b6e16c681cd8a4e1fff94ecd6b0bb09.tar.gz
bpo-34334: Don't log traceback twice in QueueHandler (GH-9537)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2018-09-25-08-42-34.bpo-34334.rSPBW9.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-09-25-08-42-34.bpo-34334.rSPBW9.rst b/Misc/NEWS.d/next/Library/2018-09-25-08-42-34.bpo-34334.rSPBW9.rst
new file mode 100644
index 0000000000..137a4f78f4
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2018-09-25-08-42-34.bpo-34334.rSPBW9.rst
@@ -0,0 +1,2 @@
+In :class:`QueueHandler`, clear `exc_text` from :class:`LogRecord` to
+prevent traceback from being written twice.