Whitespace normalization.

This commit is contained in:
Tim Peters 2004-01-18 20:29:55 +00:00
parent 5303a96808
commit 58eb11cf62
34 changed files with 69 additions and 76 deletions

View file

@ -142,7 +142,7 @@ class StringIO:
return lines
def truncate(self, size=None):
_complain_ifclosed(self.closed)
_complain_ifclosed(self.closed)
if size is None:
size = self.pos
elif size < 0: