summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
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:56:36 (GMT)
commit8d886046821f1cd43147c340b04ee0f067157749 (patch)
treec46b43c88321138073c3c3d566a2fdc8382f1ed9 /Misc/NEWS
parent1033b310a34f65a1c976bdfe974e44cfcd9f0d1e (diff)
downloadcpython-8d886046821f1cd43147c340b04ee0f067157749.zip
cpython-8d886046821f1cd43147c340b04ee0f067157749.tar.gz
cpython-8d886046821f1cd43147c340b04ee0f067157749.tar.bz2
#14798: pyclbr now raises ImportError instead of KeyError for missing packages
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 565db1b..1e7153d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -63,6 +63,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 #14829: Fix bisect and range() indexing with large indices
(>= 2 ** 32) under 64-bit Windows.