[issue7198] csv.writer

2010-07-28 Thread Skip Montanaro
Skip Montanaro added the comment: Can you provide me with a concrete example which fails for you? I don't have ready access to a Windows machine with Python on it but should be able to arrange something at work, however before going through the exercise of spending admin time to install Python I

[issue7198] csv.writer

2010-07-27 Thread Andreas Balogh
Andreas Balogh added the comment: I encountered the same problem. It is unclear that using binary mode for the file is solving the problem. I suggest to add a hint to the documentation. -- nosy: +baloan ___ Python tracker

[issue7198] csv.writer

2009-10-24 Thread Bob Cannon
Changes by Bob Cannon : -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue7198] csv.writer

2009-10-24 Thread Bob Cannon
Bob Cannon added the comment: Probably so. I'm sorry to report this as a bug if it's not. I asked abut this on a Python group on IRC and got no suggestions. Thanks for taking a look. -- ___ Python tracker __

[issue7198] csv.writer

2009-10-24 Thread Skip Montanaro
Skip Montanaro added the comment: Your output file should be opened in binary mode. Sounds like you opened it in text mode. -- nosy: +skip.montanaro ___ Python tracker ___ _

[issue7198] csv.writer

2009-10-24 Thread Bob Cannon
New submission from Bob Cannon : I used csv.writer to open a file for writing with comma as separator and dialect='excel'. I used writerow to write each row into the file. When I execute under linux, each line is terminated by '\r\n'. When I execute under windows, each line is terminated by '\

[issue7198] csv.writer

2009-10-24 Thread Bob Cannon
Changes by Bob Cannon : -- nosy: zacktu severity: normal status: open title: csv.writer type: behavior versions: Python 2.6 ___ Python tracker ___