[issue4522] Module wsgiref is not python3000 ready (unicode issues)

2008-12-31 Thread Antoine Pitrou
Antoine Pitrou added the comment: Resolution is more advanced in #4718. -- nosy: +pitrou resolution: -> duplicate status: open -> closed superseder: -> wsgiref package totally broken ___ Python tracker __

[issue4522] Module wsgiref is not python3000 ready (unicode issues)

2008-12-05 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc <[EMAIL PROTECTED]> added the comment: The test should indeed be changed. You may want to use io.BytesIO instead. In any case this test looks like a standard usage of the library. Please make it as pleasant-looking as possible. ___ Pytho

[issue4522] Module wsgiref is not python3000 ready (unicode issues)

2008-12-05 Thread Felix Benner
Felix Benner <[EMAIL PROTECTED]> added the comment: The test uses StringIO. I don't understand the test enough to change that. If I understand the WSGI spec correctly then it would be the test that's wrong. ___ Python tracker <[EMAIL PROTECTED]>

[issue4522] Module wsgiref is not python3000 ready (unicode issues)

2008-12-04 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- nosy: +pje ___ Python tracker <[EMAIL PROTECTED]> ___ ___ Python-bugs-list mailing

[issue4522] Module wsgiref is not python3000 ready (unicode issues)

2008-12-04 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc <[EMAIL PROTECTED]> added the comment: The patch is incomplete: it breaks test_wsgiref. -- nosy: +amaury.forgeotdarc ___ Python tracker <[EMAIL PROTECTED]> ___

[issue4522] Module wsgiref is not python3000 ready (unicode issues)

2008-12-04 Thread Christian Heimes
Changes by Christian Heimes <[EMAIL PROTECTED]>: -- priority: -> critical stage: -> patch review type: -> resource usage ___ Python tracker <[EMAIL PROTECTED]> ___ _

[issue4522] Module wsgiref is not python3000 ready (unicode issues)

2008-12-04 Thread Felix Benner
New submission from Felix Benner <[EMAIL PROTECTED]>: wsgiref.handlers.py tries to send strings where bytes is necessary in accordance with PEP333 the attached patch encodes everything with ISO-8859-1. Additionally the patch from Issue 3348 has to be applied. -- components: Library (Lib