[issue10954] csv.reader/writer to raise exception if mode is binary or newline is not ''

2021-10-20 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> wont fix stage: -> resolved status: open -> closed superseder: -> Close 2to3 issues and list them here ___ Python tracker ___

[issue10954] csv.reader/writer to raise exception if mode is binary or newline is not ''

2019-03-15 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue10954] csv.reader/writer to raise exception if mode is binary or newline is not ''

2015-02-24 Thread Martin Panter
Martin Panter added the comment: I suspect it may not be practical to check the newline translation mode of a TextIOWrapper or StringIO stream, and I don’t think newline translation is even required in general for text stream classes. Beware that the “newlines” attribute isn’t going to help; s

[issue10954] csv.reader/writer to raise exception if mode is binary or newline is not ''

2015-02-24 Thread Skip Montanaro
Changes by Skip Montanaro : -- nosy: -skip.montanaro ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue10954] csv.reader/writer to raise exception if mode is binary or newline is not ''

2015-02-24 Thread Mark Lawrence
Mark Lawrence added the comment: I've changed this issue to reflect what I think it should be saying. -- nosy: +BreamoreBoy title: No warning for csv.writer API change -> csv.reader/writer to raise exception if mode is binary or newline is not '' type: enhancement -> behavior versions: