summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2009-05-27 21:50:13 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2009-05-27 21:50:13 (GMT)
commit87c50b4e20f4a8bfd49c549e9a4e83d08a14b53b (patch)
treebd12fb2bfcbca27d56e21069f87c5ff92b2722ad /Lib
parent1f1b9d3d0de4dcf272f7908ce001833ac4cdabbb (diff)
downloadcpython-87c50b4e20f4a8bfd49c549e9a4e83d08a14b53b.zip
cpython-87c50b4e20f4a8bfd49c549e9a4e83d08a14b53b.tar.gz
cpython-87c50b4e20f4a8bfd49c549e9a4e83d08a14b53b.tar.bz2
Remove useless compatibility statements
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_modulefinder.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/Lib/test/test_modulefinder.py b/Lib/test/test_modulefinder.py
index bee2abb..bddd6c5 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__)]