diff options
| author | Martin Basti <martin.basti@gmail.com> | 2016-06-27 00:21:42 +0200 |
|---|---|---|
| committer | Martin Basti <martin.basti@gmail.com> | 2016-06-27 01:43:22 +0200 |
| commit | c0b56fcb1ea32bba3321225d549338da80e33d63 (patch) | |
| tree | 9adc8edf46e7b285732fb3ec527323e8b9634d41 /dns/set.py | |
| parent | 7854fd8294bb67b093d3e9ffce16ce183a65d547 (diff) | |
| download | dnspython-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.py | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -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}? |
