[issue12037] test_email failures under Windows with the eol extension activated

2013-08-31 Thread Roundup Robot
Roundup Robot added the comment: New changeset 5600e9a5c35d by Terry Jan Reedy in branch 'default': Issue #12037: Fix test_email for desktop Windows. http://hg.python.org/cpython/rev/5600e9a5c35d -- ___ Python tracker

[issue12037] test_email failures under Windows with the eol extension activated

2013-08-31 Thread Roundup Robot
Roundup Robot added the comment: New changeset f0eedca4b2a2 by Terry Jan Reedy in branch '3.3': Issue #12037: Fix test_email for desktop Windows. http://hg.python.org/cpython/rev/f0eedca4b2a2 -- nosy: +python-dev ___ Python tracker

[issue12037] test_email failures under Windows with the eol extension activated

2013-08-30 Thread R. David Murray
R. David Murray added the comment: Looks good to me, go ahead and push it. -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue12037] test_email failures under Windows with the eol extension activated

2013-08-30 Thread Terry J. Reedy
Terry J. Reedy added the comment: Attached patch works here too. Only the test...rfc822 part applies to 3.3, both to 3.4. The same idea works for #18889 too. -- Added file: http://bugs.python.org/file31527/12037_test_email2.diff ___ Python tracker <

[issue12037] test_email failures under Windows with the eol extension activated

2013-08-30 Thread R. David Murray
R. David Murray added the comment: We have to be careful, since while Windows may no longer care about \r\n, the RFCs certainly do, and the email package is very concerned with the RFC. However, neither of these tests are testing linesep discipline, so it is fine to fix them. I've made review

[issue12037] test_email failures under Windows with the eol extension activated

2013-08-30 Thread Terry J. Reedy
Terry J. Reedy added the comment: Two years later, I get the exact same failure in both repository 3.3.2+ and installed 3.3.2. So eol extension and .hgignore seem irrelevant. I sometime think Python should stop generating files with \r\n. In other words, change os.linesep to '\n' even on windo

[issue12037] test_email failures under Windows with the eol extension activated

2012-05-28 Thread R. David Murray
Changes by R. David Murray : -- assignee: r.david.murray -> components: +email nosy: +barry ___ Python tracker ___ ___ Python-bugs-li

[issue12037] test_email failures under Windows with the eol extension activated

2011-05-09 Thread Antoine Pitrou
New submission from Antoine Pitrou : The title says it all. Ideally (!), changing .hgignore should be enough to fix this issue. (NB: I have only tested the default branch) == FAIL: test_byte_message_rfc822_only (test_email.Test