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 | a8521643f2573d1335aea7a1d877b5bb8df60e17 (patch) | |
tree | 620ca536d7835d34fbcf953dbb0a9233ca3127c9 /coverage/backward.py | |
parent | 99fee9149a879b786d1974115d5c8afc43a21d08 (diff) | |
download | python-coveragepy-a8521643f2573d1335aea7a1d877b5bb8df60e17.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 637a597..b78158c 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. |