summaryrefslogtreecommitdiff
path: root/dns/set.py
diff options
context:
space:
mode:
authorMartin Basti <martin.basti@gmail.com>2016-06-27 00:21:42 +0200
committerMartin Basti <martin.basti@gmail.com>2016-06-27 01:43:22 +0200
commitc0b56fcb1ea32bba3321225d549338da80e33d63 (patch)
tree9adc8edf46e7b285732fb3ec527323e8b9634d41 /dns/set.py
parent7854fd8294bb67b093d3e9ffce16ce183a65d547 (diff)
downloaddnspython-c0b56fcb1ea32bba3321225d549338da80e33d63.tar.gz
Pylint: enable delslice-method check
__delslice__ is deprecated since python 2.6 and was removed in py3
Diffstat (limited to 'dns/set.py')
-rw-r--r--dns/set.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/dns/set.py b/dns/set.py
index f13af5f..0efc7d9 100644
--- a/dns/set.py
+++ b/dns/set.py
@@ -235,9 +235,6 @@ class Set(object):
def __getslice__(self, i, j):
return self.items[i:j]
- def __delslice__(self, i, j):
- del self.items[i:j]
-
def issubset(self, other):
"""Is I{self} a subset of I{other}?