summaryrefslogtreecommitdiff
path: root/setuptools/tests/test_resources.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2014-07-12 09:14:36 -0400
committerJason R. Coombs <jaraco@jaraco.com>2014-07-12 09:14:36 -0400
commitc6fbf0c0ab840ad86687323c7532ff5b7de6c6bb (patch)
tree8ec845f17dba983a7e8cef0cf20a45a238f51b11 /setuptools/tests/test_resources.py
parent1237522b992f84cf674833f0745b144874db817c (diff)
downloadpython-setuptools-git-c6fbf0c0ab840ad86687323c7532ff5b7de6c6bb.tar.gz
frozenset is available in Python 2.6
Diffstat (limited to 'setuptools/tests/test_resources.py')
-rw-r--r--setuptools/tests/test_resources.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/setuptools/tests/test_resources.py b/setuptools/tests/test_resources.py
index 759bbcd5..3baa3ab1 100644
--- a/setuptools/tests/test_resources.py
+++ b/setuptools/tests/test_resources.py
@@ -18,11 +18,6 @@ from setuptools.command.easy_install import (get_script_header, is_sh,
from setuptools.compat import StringIO, iteritems, PY3
from .py26compat import skipIf
-try:
- frozenset
-except NameError:
- from sets import ImmutableSet as frozenset
-
def safe_repr(obj, short=False):
""" copied from Python2.7"""
try: