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