From: Antoine Pitrou Date: Wed, 27 May 2009 21:50:13 +0000 (+0000) Subject: Remove useless compatibility statements X-Git-Tag: v3.1rc1~28 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=87c50b4e20f4a8bfd49c549e9a4e83d08a14b53b;p=python Remove useless compatibility statements --- diff --git a/Lib/test/test_modulefinder.py b/Lib/test/test_modulefinder.py index bee2abb63e..bddd6c5c66 100644 --- a/Lib/test/test_modulefinder.py +++ b/Lib/test/test_modulefinder.py @@ -6,15 +6,8 @@ import tempfile from test import support -try: set -except NameError: from sets import Set as set - import modulefinder -# Note: To test modulefinder with Python 2.2, sets.py and -# modulefinder.py must be available - they are not in the standard -# library. - TEST_DIR = tempfile.mkdtemp() TEST_PATH = [TEST_DIR, os.path.dirname(__future__.__file__)]