From: Petri Lehtinen Date: Fri, 18 May 2012 18:51:11 +0000 (+0300) Subject: #14798: pyclbr now raises ImportError instead of KeyError for missing packages X-Git-Tag: v3.3.0a4~127 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=43ae3ceab8dd65d184aef1773714a604984de38e;p=python #14798: pyclbr now raises ImportError instead of KeyError for missing packages --- 43ae3ceab8dd65d184aef1773714a604984de38e diff --cc Misc/NEWS index db88500478,1e7153d080..1c3841b700 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -38,16 -63,10 +38,20 @@@ Core and Builtin Library ------- + - Issue #14798: Fix the functions in pyclbr to raise an ImportError + when the first part of a dotted name is not a package. Patch by + Xavier de Gaye. + +- Issue #12098: multiprocessing on Windows now starts child processes + using the same sys.flags as the current process. Initial patch by + Sergey Mezentsev. + +- Issue #13031: Small speed-up for tarfile when unzipping tarfiles. + Patch by Justin Peel. + +- Issue #14780: urllib.request.urlopen() now has a ``cadefault`` argument + to use the default certificate store. Initial patch by James Oakley. + - Issue #14829: Fix bisect and range() indexing with large indices (>= 2 ** 32) under 64-bit Windows.