Closed bworrell closed 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! :)
sets
deduplicator.py
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.
DeprecationWarning
import sets
Thanks for the heads up @bworrell! I've removed this deprecated import in 6bde5e6.
The
sets
module has been deprecated since Python 2.6 (source) and doesn't seem to actually be used indeduplicator.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 aDeprecationWarning
when Iimport sets
.