[issue15744] missing tests for {RawIO,BufferedIO,TextIO}.writelines

2012-10-16 Thread Antoine Pitrou
Antoine Pitrou added the comment: I've committed a modified version of your patch. Thank you ! -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker __

[issue15744] missing tests for {RawIO,BufferedIO,TextIO}.writelines

2012-10-16 Thread Roundup Robot
Roundup Robot added the comment: New changeset 5b062bb56037 by Antoine Pitrou in branch '2.7': Also add tests for TextIOWrapper.writelines() (issue #15744). http://hg.python.org/cpython/rev/5b062bb56037 -- ___ Python tracker

[issue15744] missing tests for {RawIO,BufferedIO,TextIO}.writelines

2012-10-16 Thread Roundup Robot
Roundup Robot added the comment: New changeset 4c204a61bd79 by Antoine Pitrou in branch '3.2': Also add tests for TextIOWrapper.writelines() (issue #15744). http://hg.python.org/cpython/rev/4c204a61bd79 New changeset 2efcaec45697 by Antoine Pitrou in branch '3.3': Merge for issue #15744: add tes

[issue15744] missing tests for {RawIO,BufferedIO,TextIO}.writelines

2012-10-16 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- stage: needs patch -> patch review versions: +Python 3.4 ___ Python tracker ___ ___ Python-bugs-list ma

[issue15744] missing tests for {RawIO,BufferedIO,TextIO}.writelines

2012-09-18 Thread Felipe Cruz
Felipe Cruz added the comment: Updated based on Pitrou comments -- Added file: http://bugs.python.org/file27220/issue15744_v2.patch ___ Python tracker ___ ___

[issue15744] missing tests for {RawIO,BufferedIO,TextIO}.writelines

2012-09-15 Thread Felipe Cruz
Felipe Cruz added the comment: Add tests for {RawIO,BufferedIO,TextIO}.writelines() -- keywords: +patch nosy: +felipecruz Added file: http://bugs.python.org/file27200/issue15744_v1.patch ___ Python tracker

[issue15744] missing tests for {RawIO,BufferedIO,TextIO}.writelines

2012-09-08 Thread Kyle Roberts
Changes by Kyle Roberts : -- nosy: +kyle.roberts ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue15744] missing tests for {RawIO,BufferedIO,TextIO}.writelines

2012-09-05 Thread Ahsan Nawroj
Changes by Ahsan Nawroj : -- nosy: +ainur0160 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue15744] missing tests for {RawIO,BufferedIO,TextIO}.writelines

2012-09-03 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- keywords: +easy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue15744] missing tests for {RawIO,BufferedIO,TextIO}.writelines

2012-09-01 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +benjamin.peterson, hynek, stutzbach ___ Python tracker ___ ___ Python-bugs-list mailing list Uns

[issue15744] missing tests for {RawIO,BufferedIO,TextIO}.writelines

2012-08-20 Thread Antoine Pitrou
New submission from Antoine Pitrou: The writelines() method of I/O objects has almost no tests in test_fileio / test_io (and a couple of them in test_file). -- components: IO, Tests messages: 168709 nosy: pitrou priority: normal severity: normal stage: needs patch status: open title: mi