From: Vinay Sajip Date: Thu, 19 Jun 2008 22:41:08 +0000 (+0000) Subject: Updated with fix for #3136. X-Git-Tag: v2.6b2~222 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8dc20fd7ed6e45e0c05c1e458098f5d12752c9eb;p=thirdparty%2FPython%2Fcpython.git Updated with fix for #3136. --- diff --git a/Misc/NEWS b/Misc/NEWS index 1829cba5f8ec..9bd4f3cb88e4 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -89,6 +89,11 @@ Extension Modules Library ------- +- Issue #3136: fileConfig()'s disabling of old loggers is now conditional via + an optional disable_existing_loggers parameter, but the default value is + such that the old behaviour is preserved. Thanks to Leandro Lucarella for + the patch. + - Issue #3126: StreamHandler and FileHandler check before calling "flush" and "close" that the stream object has these, using hasattr (thanks to bobf for the patch).