summaryrefslogtreecommitdiff
path: root/test.py
diff options
context:
space:
mode:
authorJakub Wilk <jwilk@jwilk.net>2017-03-17 20:39:38 +0100
committerJakub Wilk <jwilk@jwilk.net>2017-03-17 21:53:41 +0100
commit728127054d2ff8937b64b1479b26bb4a113c0091 (patch)
tree91a519ddb41eca8eec6f3d6e4ec00f471505e0c3 /test.py
parentdecc2f0ee4dbf3223f1005f97de110d2ed0d1b44 (diff)
downloadpython-lxml-728127054d2ff8937b64b1479b26bb4a113c0091.tar.gz
remove conditional imports of the set module
These were needed for Python 2.3, which is no longer supported.
Diffstat (limited to 'test.py')
-rw-r--r--test.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/test.py b/test.py
index b3f0eb5d..2dbe94ef 100644
--- a/test.py
+++ b/test.py
@@ -73,11 +73,6 @@ import unittest
import traceback
try:
- set
-except NameError:
- from sets import Set as set
-
-try:
# Python >=2.7 and >=3.2
from unittest.runner import _TextTestResult
except ImportError: