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

2009-03-27 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: The wrong closed() call was corrected with r67923. Then, the io module is by design very picky about the distinction between bytes and unicode. This is different from the philosophy of other parts of the library, but io comes from python 3.0... StringIO

[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 ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[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 Python 2.6.1 f