diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/coveragetest.py | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/test/coveragetest.py b/test/coveragetest.py index 66bc8b62..baace807 100644 --- a/test/coveragetest.py +++ b/test/coveragetest.py @@ -3,15 +3,8 @@ import imp, os, random, shutil, sys, tempfile, textwrap, unittest from cStringIO import StringIO -# Python version compatibility -try: - set # new in 2.4 -except NameError: - # pylint: disable-msg=W0622 - # (Redefining built-in 'set') - from sets import Set as set - import coverage +from coverage.backward import set # pylint: disable-msg=W0622 class Tee(object): |