Whitespace normalization.

This commit is contained in:
Tim Peters 2005-03-28 01:08:02 +00:00
parent 700f36c752
commit eba28bea9b
14 changed files with 28 additions and 30 deletions

View file

@ -147,12 +147,12 @@ class MutableString(UserString):
raise TypeError, "unhashable type (it is mutable)"
def __setitem__(self, index, sub):
if index < 0:
index += len(self.data)
index += len(self.data)
if index < 0 or index >= len(self.data): raise IndexError
self.data = self.data[:index] + sub + self.data[index+1:]
def __delitem__(self, index):
if index < 0:
index += len(self.data)
index += len(self.data)
if index < 0 or index >= len(self.data): raise IndexError
self.data = self.data[:index] + self.data[index+1:]
def __setslice__(self, start, end, sub):