From: Raymond Hettinger Date: Sat, 13 Sep 2003 02:59:00 +0000 (+0000) Subject: SF bug #804115: bad argument handling(unittest.py) X-Git-Tag: v2.3.1~52 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=99275887955bd34fc301532c47542a89cfc703ca;p=thirdparty%2FPython%2Fcpython.git SF bug #804115: bad argument handling(unittest.py) --- diff --git a/Lib/unittest.py b/Lib/unittest.py index 76b08d6c99f3..d033936d2d0c 100644 --- a/Lib/unittest.py +++ b/Lib/unittest.py @@ -560,8 +560,8 @@ class _WritelnDecorator: def __getattr__(self, attr): return getattr(self.stream,attr) - def writeln(self, *args): - if args: self.write(*args) + def writeln(self, arg=None): + if arg: self.write(arg) self.write('\n') # text-mode streams translate to \r\n if needed