summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorXtreak <tirkarthi@users.noreply.github.com>2018-07-02 08:57:46 (GMT)
committerVinay Sajip <vinay_sajip@yahoo.co.uk>2018-07-02 08:57:46 (GMT)
commit087570af6d5d39b51bdd5e660a53903960e58678 (patch)
tree44556f42bbe02071a5a6f4f51781762b174ace32 /Misc
parentc6cd164cffedb306a4c6644d9d03072f24da246d (diff)
downloadcpython-087570af6d5d39b51bdd5e660a53903960e58678.zip
cpython-087570af6d5d39b51bdd5e660a53903960e58678.tar.gz
cpython-087570af6d5d39b51bdd5e660a53903960e58678.tar.bz2
bpo-33978: Close existing handlers before logging (re-)configuration. (GH-8008)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2018-06-29-12-23-34.bpo-33978.y4csIw.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-06-29-12-23-34.bpo-33978.y4csIw.rst b/Misc/NEWS.d/next/Library/2018-06-29-12-23-34.bpo-33978.y4csIw.rst
new file mode 100644
index 0000000..1263895
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2018-06-29-12-23-34.bpo-33978.y4csIw.rst
@@ -0,0 +1,2 @@
+Closed existing logging handlers before reconfiguration via fileConfig
+and dictConfig. Patch by Karthikeyan Singaravelan.