summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2010-11-18 03:03:04 (GMT)
committerBrett Cannon <bcannon@gmail.com>2010-11-18 03:03:04 (GMT)
commit0ffe6a976060431c294e4e5e2a0324a67bc9cf97 (patch)
tree0684326ce1022645dea9ca4dbb58e01859bb4302 /Misc
parent8fb9b868bd8415347ffa608eec324055ff9f66d7 (diff)
downloadcpython-0ffe6a976060431c294e4e5e2a0324a67bc9cf97.zip
cpython-0ffe6a976060431c294e4e5e2a0324a67bc9cf97.tar.gz
cpython-0ffe6a976060431c294e4e5e2a0324a67bc9cf97.tar.bz2
Fix a minor inconsistency in capitalization for the 'No module named' exception
message in importlib. Thanks to Éric Araujo for spotting the inconsistency.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 13cae78..f99919e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -18,6 +18,8 @@ Core and Builtins
Library
-------
+- Make the 'No module named' exception message from importlib consistent.
+
- Issue #10443: Add the SSLContext.set_default_verify_paths() method.
- Issue #10440: Support RUSAGE_THREAD as a constant in the resource module.