[Docstring-checkins] CVS: dps/test alltests.py,1.1,1.2
Status: Pre-Alpha
Brought to you by:
goodger
From: David G. <go...@us...> - 2002-01-26 00:06:58
|
Update of /cvsroot/docstring/dps/test In directory usw-pr-cvs1:/tmp/cvs-serv6389/dps/test Modified Files: alltests.py Log Message: whitespace Index: alltests.py =================================================================== RCS file: /cvsroot/docstring/dps/test/alltests.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** alltests.py 2001/09/17 04:02:26 1.1 --- alltests.py 2002/01/26 00:06:55 1.2 *************** *** 18,26 **** """Write to a file and a stream (default: stdout) simultaneously.""" ! def __init__(self, filename, stream=sys.__stdout__): self.file = open(filename, 'w') self.stream = stream ! def write(self, string): self.stream.write(string) --- 18,26 ---- """Write to a file and a stream (default: stdout) simultaneously.""" ! def __init__(self, filename, stream=sys.__stdout__): self.file = open(filename, 'w') self.stream = stream ! def write(self, string): self.stream.write(string) |