From a8521643f2573d1335aea7a1d877b5bb8df60e17 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sat, 10 Nov 2012 09:31:12 -0500 Subject: Refactor the config parsing. --- coverage/backward.py | 6 ------ 1 file changed, 6 deletions(-) (limited to 'coverage/backward.py') 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. -- cgit v1.2.1