MAECProject / python-maec

A Python library for parsing, manipulating, and generating MAEC content.
http://maec.readthedocs.org/
BSD 3-Clause "New" or "Revised" License
41 stars 20 forks source link

Remove sets import from deduplicator module #56

Closed bworrell closed 10 years ago

bworrell commented 10 years ago

The sets module has been deprecated since Python 2.6 (source) and doesn't seem to actually be used in deduplicator.py, so lets get rid of it! :)

I also get a DeprecationWarning in tox when I test with Python 2.6. Interestingly, Python 2.7 doesn't emit a DeprecationWarning when I import sets.

ikiril01 commented 10 years ago

Thanks for the heads up @bworrell! I've removed this deprecated import in 6bde5e6.