Kaydet (Commit) e1f15972 authored tarafından Brett Cannon's avatar Brett Cannon

Closes issue #18598: Have the exception message for

importlib.import_module() include the name of the module when the
'package' argument is missing but needed.
üst 388a3921
......@@ -85,7 +85,9 @@ def import_module(name, package=None):
level = 0
if name.startswith('.'):
if not package:
raise TypeError("relative imports require the 'package' argument")
msg = ("the 'package' argument is required to perform a relative "
"import for {!r}")
raise TypeError(msg.format(name))
for character in name:
if character != '.':
break
......
......@@ -24,6 +24,9 @@ Core and Builtins
Library
-------
- Issue #18598: Tweak exception message for importlib.import_module() to
include the module name when a key argument is missing.
- Issue #18676: Change 'positive' to 'non-negative' in queue.py put and get
docstrings and ValueError messages. Patch by Zhongyue Luo
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment