[issue5645] test_memoryio fails for py3k on windows

2009-06-04 Thread Jason R. Coombs
Jason R. Coombs added the comment: Patch is also applicable to #6127. -- nosy: +jaraco ___ Python tracker ___ ___ Python-bugs-list mai

[issue5645] test_memoryio fails for py3k on windows

2009-04-04 Thread Antoine Pitrou
Antoine Pitrou added the comment: Committed in r71151, thanks! -- resolution: -> fixed status: open -> closed ___ Python tracker ___

[issue5645] test_memoryio fails for py3k on windows

2009-04-04 Thread Hirokazu Yamamoto
Hirokazu Yamamoto added the comment: I confirmed the patch works. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscr

[issue5645] test_memoryio fails for py3k on windows

2009-04-04 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- stage: -> patch review type: -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Unsu

[issue5645] test_memoryio fails for py3k on windows

2009-04-04 Thread Antoine Pitrou
Antoine Pitrou added the comment: Buildbots should be green for the release. -- priority: -> release blocker ___ Python tracker ___ _

[issue5645] test_memoryio fails for py3k on windows

2009-04-04 Thread Antoine Pitrou
Antoine Pitrou added the comment: Can you test with the following patch? -- keywords: +patch Added file: http://bugs.python.org/file13610/memio.patch ___ Python tracker ___ _

[issue5645] test_memoryio fails for py3k on windows

2009-04-04 Thread Antoine Pitrou
Antoine Pitrou added the comment: It looks like there is a disagreement between c-io and py-io as to what the newline parameter in StringIO means. I think the c-io version makes more sense (but I'm biased, since I wrote it), while the py-io results are quite difficult to interpret. --

[issue5645] test_memoryio fails for py3k on windows

2009-04-03 Thread Hirokazu Yamamoto
Changes by Hirokazu Yamamoto : -- nosy: +pitrou ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue5645] test_memoryio fails for py3k on windows

2009-04-03 Thread Hirokazu Yamamoto
Hirokazu Yamamoto added the comment: I'm sure, but with following test code, def run(module): print("///") print("//", module) memio = module.StringIO(newline=None) # The C StringIO decodes newlines in write() calls, but the Python # implementatio