diff options
author | Jakub Wilk <jwilk@jwilk.net> | 2017-03-17 20:39:38 +0100 |
---|---|---|
committer | Jakub Wilk <jwilk@jwilk.net> | 2017-03-17 21:53:41 +0100 |
commit | 728127054d2ff8937b64b1479b26bb4a113c0091 (patch) | |
tree | 91a519ddb41eca8eec6f3d6e4ec00f471505e0c3 /test.py | |
parent | decc2f0ee4dbf3223f1005f97de110d2ed0d1b44 (diff) | |
download | python-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.py | 5 |
1 files changed, 0 insertions, 5 deletions
@@ -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: |