From: Guido van Rossum Date: Thu, 22 Jun 1995 18:45:04 +0000 (+0000) Subject: set softspace to 0 in __init__ X-Git-Tag: v1.3b1~251 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0daa13b1884cb0744842fc20ca03b43b69c94eba;p=thirdparty%2FPython%2Fcpython.git set softspace to 0 in __init__ --- diff --git a/Lib/StringIO.py b/Lib/StringIO.py index 715e71e76f09..c97948726373 100644 --- a/Lib/StringIO.py +++ b/Lib/StringIO.py @@ -33,6 +33,7 @@ class StringIO: self.buf = buf self.pos = 0 self.closed = 0 + self.softspace = 0 def close(self): if not self.closed: self.closed = 1