[issue5568] self.writer.closed() extraneous parens in BufferedRWPair of io module

2009-03-26 Thread Jim Olson
Changes by Jim Olson : -- components: +Library (Lib) ___ Python tracker <http://bugs.python.org/issue5568> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue5568] self.writer.closed() extraneous parens in BufferedRWPair of io module

2009-03-26 Thread Jim Olson
New submission from Jim Olson : import io # Corrected a typo in Python261/Lib/io.py at line 1167 # return self.writer.closed() ==> return self.writer.closed # in #@property #def closed(self): #return self.writer.closed #also: shouldn't ascii strings still work in Pyth