summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2015-12-04 23:19:42 (GMT)
committerBrett Cannon <brett@python.org>2015-12-04 23:19:42 (GMT)
commit65ca88e4e0b3d26e625d1aecd7c0fe0beb5e3b1d (patch)
treea1f221e3e01a9b3a3e3d3b4385bc0dca64bec390 /Misc
parent3ad18dc7a7a5f0613ad9ce787cd92002a556fe7b (diff)
downloadcpython-65ca88e4e0b3d26e625d1aecd7c0fe0beb5e3b1d.zip
cpython-65ca88e4e0b3d26e625d1aecd7c0fe0beb5e3b1d.tar.gz
cpython-65ca88e4e0b3d26e625d1aecd7c0fe0beb5e3b1d.tar.bz2
Issue #25771: Tweak ValueError message when package isn't specified
for importlib.util.resolve_name() but is needed. Thanks to Martin Panter for the bug report.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index f87ed38..f4e7e54 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -109,6 +109,9 @@ Core and Builtins
Library
-------
+- Issue #25771: Tweak the exception message for importlib.util.resolve_name()
+ when 'package' isn't specified but necessary.
+
- Issue #6478: _strptime's regexp cache now is reset after changing timezone
with time.tzset().