diff options
| author | Barry Warsaw | 2016-04-09 15:00:50 -0400 |
|---|---|---|
| committer | Barry Warsaw | 2016-04-09 15:00:50 -0400 |
| commit | ba7f2eff098a9a1c8ffc98d5d29aa35e1652912d (patch) | |
| tree | d8bbd7ff47b1e8a60caa893f9ad20de4fe262495 | |
| parent | 2fb155d8f8b2890a481d51857b6e71ebefbe5654 (diff) | |
| download | mailman-ba7f2eff098a9a1c8ffc98d5d29aa35e1652912d.tar.gz mailman-ba7f2eff098a9a1c8ffc98d5d29aa35e1652912d.tar.zst mailman-ba7f2eff098a9a1c8ffc98d5d29aa35e1652912d.zip | |
| -rw-r--r-- | coverage.ini | 1 | ||||
| -rw-r--r-- | src/mailman/utilities/interact.py | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/coverage.ini b/coverage.ini index 6c466df25..3deaacf0c 100644 --- a/coverage.ini +++ b/coverage.ini @@ -7,6 +7,7 @@ omit = .tox/*/lib/python3.5/site-packages/* .tox/*/lib/python3.5/site-packages/* */test_*.py + /tmp/* [report] exclude_lines = diff --git a/src/mailman/utilities/interact.py b/src/mailman/utilities/interact.py index 3c38b02aa..3cc5dddc6 100644 --- a/src/mailman/utilities/interact.py +++ b/src/mailman/utilities/interact.py @@ -53,7 +53,7 @@ def interact(upframe=True, banner=DEFAULT_BANNER, overrides=None): # Try to import the readline module, but don't worry if it's unavailable. try: import readline # noqa - except ImportError: + except ImportError: # pragma: no cover pass # Mimic the real interactive interpreter's loading of any $PYTHONSTARTUP # file. Note that if the startup file is not prepared to be exec'd more |
