diff options
author | Martin Panter <vadmium+py@gmail.com> | 2015-12-10 06:47:06 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2015-12-10 06:47:06 (GMT) |
commit | 7dda421bfff887da9a84e99c37ef1b0ef9f3cde9 (patch) | |
tree | e39c07f91360571424cb92263f3f34434c974ec4 /Doc/using | |
parent | a29eb08fb97fff461b62682da4ee9ac6ea8db5bf (diff) | |
download | cpython-7dda421bfff887da9a84e99c37ef1b0ef9f3cde9.zip cpython-7dda421bfff887da9a84e99c37ef1b0ef9f3cde9.tar.gz cpython-7dda421bfff887da9a84e99c37ef1b0ef9f3cde9.tar.bz2 |
Issue #14285: Do not catch exceptions initializing any ancestor package
The previous fix only handled the case of the parent package of __main__
failing to initialize.
Also make the "Error while finding spec" formatting slightly more appealing,
and document and test that the module name must be absolute.
Diffstat (limited to 'Doc/using')
-rw-r--r-- | Doc/using/cmdline.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/using/cmdline.rst b/Doc/using/cmdline.rst index c7210a0..af86055 100644 --- a/Doc/using/cmdline.rst +++ b/Doc/using/cmdline.rst @@ -77,7 +77,7 @@ source. the :mod:`__main__` module. Since the argument is a *module* name, you must not give a file extension - (``.py``). The ``module-name`` should be a valid Python module name, but + (``.py``). The module name should be a valid absolute Python module name, but the implementation may not always enforce this (e.g. it may allow you to use a name that includes a hyphen). |