Removed unused ListMixin._checkindex() correct kwarg.

Unused since its introduction in 66e1670efa.
This commit is contained in:
Sergey Fedoseev 2017-07-13 11:34:22 +05:00
parent e532bf7a90
commit ce834d0891
1 changed files with 2 additions and 2 deletions

View File

@ -236,11 +236,11 @@ class ListMixin:
def _set_single_rebuild(self, index, value):
self._set_slice(slice(index, index + 1, 1), [value])
def _checkindex(self, index, correct=True):
def _checkindex(self, index):
length = len(self)
if 0 <= index < length:
return index
if correct and -length <= index < 0:
if -length <= index < 0:
return index + length
raise IndexError('invalid index: %s' % index)