diff options
| author | Brett Cannon <bcannon@gmail.com> | 2009-08-30 08:39:57 (GMT) |
|---|---|---|
| committer | Brett Cannon <bcannon@gmail.com> | 2009-08-30 08:39:57 (GMT) |
| commit | 12c3fc934376d89168f5b072a833aa7bdd4ecd60 (patch) | |
| tree | b97da64ccb2b8731959a4cb51b3354e8a4dcb71e /Lib/importlib/test/__main__.py | |
| parent | 6cc8310ded4323a593c8beffef101c8de895629e (diff) | |
| download | cpython-12c3fc934376d89168f5b072a833aa7bdd4ecd60.zip cpython-12c3fc934376d89168f5b072a833aa7bdd4ecd60.tar.gz cpython-12c3fc934376d89168f5b072a833aa7bdd4ecd60.tar.bz2 | |
Provide module docstrings for the two main test drivers in importlib that
explain what they are for and how to use command-line arguments to tweak
semantics.
Diffstat (limited to 'Lib/importlib/test/__main__.py')
| -rw-r--r-- | Lib/importlib/test/__main__.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Lib/importlib/test/__main__.py b/Lib/importlib/test/__main__.py index 89e1391..b97e382 100644 --- a/Lib/importlib/test/__main__.py +++ b/Lib/importlib/test/__main__.py @@ -1,3 +1,9 @@ +"""Run importlib's test suite. + +Specifying the ``--builtin`` flag will run tests, where applicable, with +builtins.__import__ instead of importlib.__import__. + +""" import importlib from importlib.test.import_ import util import os.path |
