diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2016-01-02 16:33:59 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2016-01-02 16:33:59 -0500 |
commit | 5698ff871885333897392483d845fb7ce12f680f (patch) | |
tree | 45e45a768f7f57b14f803365722e7679a006f80c | |
parent | a0aa685214e9cccc361cddafea937346bd6dfdad (diff) | |
download | python-coveragepy-git-5698ff871885333897392483d845fb7ce12f680f.tar.gz |
Remove unused imports
--HG--
branch : ast-branch
-rw-r--r-- | CHANGES.rst | 2 | ||||
-rw-r--r-- | tests/test_arcs.py | 4 |
2 files changed, 1 insertions, 5 deletions
diff --git a/CHANGES.rst b/CHANGES.rst index f100c805..5bc6eb2c 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -13,7 +13,7 @@ Unreleased but now uses AST analysis. This has changed a number of things: - More code paths are now considered runnable, especially in `try`/`except` - structures. This may mean that coverage.py will identify more code paths + structures. This may mean that coverage.py will identify more code paths as uncovered. - Python 3.5's `async` and `await` keywords are properly supported, fixing diff --git a/tests/test_arcs.py b/tests/test_arcs.py index 37e8b9b7..91811e45 100644 --- a/tests/test_arcs.py +++ b/tests/test_arcs.py @@ -3,10 +3,6 @@ """Tests for coverage.py's arc measurement.""" -import collections -from itertools import cycle, product -import re - from tests.coveragetest import CoverageTest import coverage |