[issue2282] TextIOWrapper.seekable() always returns False

2008-03-17 Thread Jeff Balogh
Jeff Balogh [EMAIL PROTECTED] added the comment: Attaching a patch that fixes this issue and adds a regression test. -- keywords: +patch nosy: +jbalogh Added file: http://bugs.python.org/file9690/issue2282.diff __ Tracker [EMAIL PROTECTED]

[issue2282] TextIOWrapper.seekable() always returns False

2008-03-17 Thread Benjamin Peterson
Changes by Benjamin Peterson [EMAIL PROTECTED]: -- nosy: +gvanrossum __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2282 __ ___ Python-bugs-list mailing list

[issue2282] TextIOWrapper.seekable() always returns False

2008-03-17 Thread Guido van Rossum
Guido van Rossum [EMAIL PROTECTED] added the comment: Confirmed. Ping, since you're looking at io.py anyway, can you fix this too? -- assignee: - ping nosy: +ping priority: - high __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2282

[issue2282] TextIOWrapper.seekable() always returns False

2008-03-17 Thread Ka-Ping Yee
Ka-Ping Yee [EMAIL PROTECTED] added the comment: Patch committed. -- resolution: - accepted status: open - closed __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2282 __

[issue2282] TextIOWrapper.seekable() always returns False

2008-03-12 Thread zhen
New submission from zhen [EMAIL PROTECTED]: The seekable() method of TextIOWrapper always returns False, for it does't override the seekable method of IOBase class in which just returns False. But, there is a method named _seekable(self) in TextIOWrapper(in io.py line 1211): def