diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2012-11-10 09:31:12 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2012-11-10 09:31:12 -0500 |
commit | 80d952221a02287e71f5b4457623f681dcc979a1 (patch) | |
tree | 4227b99d021113e17636510b326dde4c99cfedf6 /coverage/backward.py | |
parent | 55cf19a0a29042cabbaf53644ee13d037ce88afb (diff) | |
download | python-coveragepy-git-80d952221a02287e71f5b4457623f681dcc979a1.tar.gz |
Refactor the config parsing.
Diffstat (limited to 'coverage/backward.py')
-rw-r--r-- | coverage/backward.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/coverage/backward.py b/coverage/backward.py index 637a5976..b78158c1 100644 --- a/coverage/backward.py +++ b/coverage/backward.py @@ -66,12 +66,6 @@ else: ) ) -# ConfigParser was renamed to the more-standard configparser -try: - import configparser -except ImportError: - import ConfigParser as configparser - # Reading Python source and interpreting the coding comment is a big deal. if sys.version_info >= (3, 0): # Python 3.2 provides `tokenize.open`, the best way to open source files. |