[issue11062] mailbox fails to round-trip a file to a Babyl mailbox

2012-08-16 Thread Andrew Svetlov
Andrew Svetlov added the comment: Thank you, Petri. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://m

[issue11062] mailbox fails to round-trip a file to a Babyl mailbox

2012-08-16 Thread Petri Lehtinen
Petri Lehtinen added the comment: Tests are now passing on Windows, too. Closing. -- resolution: -> fixed status: open -> closed ___ Python tracker ___ _

[issue11062] mailbox fails to round-trip a file to a Babyl mailbox

2012-08-15 Thread Roundup Robot
Roundup Robot added the comment: New changeset 770ffc91a82e by Petri Lehtinen in branch '3.2': #11062: Fix universal newline support in Babyl._install_message() http://hg.python.org/cpython/rev/770ffc91a82e New changeset 5206b9dbf1ac by Petri Lehtinen in branch 'default': #11062: Fix universal n

[issue11062] mailbox fails to round-trip a file to a Babyl mailbox

2012-08-15 Thread Petri Lehtinen
Petri Lehtinen added the comment: Yeah. Enabling the Babyl tests discovered yet another bug on a code path that wasn't excercised at all. I'll fix it. -- assignee: -> petri.lehtinen resolution: fixed -> ___ Python tracker

[issue11062] mailbox fails to round-trip a file to a Babyl mailbox

2012-08-15 Thread Andrew Svetlov
Andrew Svetlov added the comment: Reopen the issue because Windows tests is failed. Commits for this issue breaks Windows buildbot for 3.2 and 3.3. Looks like problem is: Windows os.linesep different than Unix. I don't know what format expected by protocol. -- nosy: +asvetlov status: c

[issue11062] mailbox fails to round-trip a file to a Babyl mailbox

2012-08-15 Thread Petri Lehtinen
Changes by Petri Lehtinen : -- versions: +Python 2.7 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue11062] mailbox fails to round-trip a file to a Babyl mailbox

2012-08-15 Thread Petri Lehtinen
Changes by Petri Lehtinen : -- resolution: -> fixed stage: needs patch -> committed/rejected status: open -> closed ___ Python tracker ___ __

[issue11062] mailbox fails to round-trip a file to a Babyl mailbox

2012-08-15 Thread Roundup Robot
Roundup Robot added the comment: New changeset ad8c9725c041 by Petri Lehtinen in branch '2.7': #11062: Fix adding a message from file to Babyl mailbox http://hg.python.org/cpython/rev/ad8c9725c041 New changeset cbc1dc8cda06 by Petri Lehtinen in branch '3.2': #11062: Fix adding a message from fil

[issue11062] mailbox fails to round-trip a file to a Babyl mailbox

2012-08-15 Thread Petri Lehtinen
Petri Lehtinen added the comment: This happens because of a bug in Babyl._install_message(). When adding a message from file, the "*** EOOH ***" line is written also after the second set of headers. -- nosy: +petri.lehtinen ___ Python tracker

[issue11062] mailbox fails to round-trip a file to a Babyl mailbox

2011-01-29 Thread R. David Murray
New submission from R. David Murray : One of the new tests introduced for #9124 fails for the Bably mailbox format. The failing tests pass a file to the add method (test_add_binary_file, test_add_nonascii_binary_file, test_add_text_file_warns). The failing part of the tests have been tempora