]> granicus.if.org Git - python/commitdiff
Remove useless compatibility statements
authorAntoine Pitrou <solipsis@pitrou.net>
Wed, 27 May 2009 21:50:13 +0000 (21:50 +0000)
committerAntoine Pitrou <solipsis@pitrou.net>
Wed, 27 May 2009 21:50:13 +0000 (21:50 +0000)
Lib/test/test_modulefinder.py

index bee2abb63e1397bc329be3c26264185081aa030a..bddd6c5c6697930112f2e44a46c9bdc0eb7a790c 100644 (file)
@@ -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__)]