From: Raymond Hettinger Date: Mon, 11 Apr 2011 19:42:59 +0000 (-0700) Subject: Issue #11747: Fix range formatting in context and unified diffs. X-Git-Tag: v3.3.0a1~2620 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2498c9f06e4adfa121e169127f2a729e8ef3250b;p=python Issue #11747: Fix range formatting in context and unified diffs. --- 2498c9f06e4adfa121e169127f2a729e8ef3250b diff --cc Misc/NEWS index d02a22ebb8,02f75d4a8c..34369cf8d9 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -103,12 -53,11 +103,15 @@@ Core and Builtin Library ------- +- logging.basicConfig now supports an optional 'handlers' argument taking an + iterable of handlers to be added to the root logger. Additional parameter + checks were also added to basicConfig. + - Issue #11814: Fix likely typo in multiprocessing.Pool._terminate(). + - Issue #11747: Fix range formatting in difflib.context_diff() and + difflib.unified_diff(). + - Issue #8428: Fix a race condition in multiprocessing.Pool when terminating worker processes: new processes would be spawned while the pool is being shut down. Patch by Charles-François Natali.