summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorPetri Lehtinen <petri@digip.org>2012-05-18 18:51:11 (GMT)
committerPetri Lehtinen <petri@digip.org>2012-05-18 18:59:49 (GMT)
commit43ae3ceab8dd65d184aef1773714a604984de38e (patch)
tree67f19442c468077fd4e32c8f8f35d6fdbe6234d3 /Misc
parented3639595aabd3913088c830d345e7db88d9060d (diff)
parent8d886046821f1cd43147c340b04ee0f067157749 (diff)
downloadcpython-43ae3ceab8dd65d184aef1773714a604984de38e.zip
cpython-43ae3ceab8dd65d184aef1773714a604984de38e.tar.gz
cpython-43ae3ceab8dd65d184aef1773714a604984de38e.tar.bz2
#14798: pyclbr now raises ImportError instead of KeyError for missing packages
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS4
2 files changed, 5 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index fc65795..4a6d7f0 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -361,6 +361,7 @@ Lars Marius Garshol
Dan Gass
Andrew Gaul
Stephen M. Gava
+Xavier de Gaye
Harry Henry Gebel
Marius Gedminas
Thomas Gellekum
diff --git a/Misc/NEWS b/Misc/NEWS
index db88500..1c3841b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -38,6 +38,10 @@ Core and Builtins
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.