[issue10155] Add fixups for encoding problems to wsgiref

2012-12-17 Thread And Clover
And Clover added the comment: (belated close-fixed) -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Python-

[issue10155] Add fixups for encoding problems to wsgiref

2010-12-17 Thread And Clover
And Clover added the comment: No, not specifically. My patch is conservative about what variables it recodes, yours more liberal, but it's difficult to say which is the better approach, or what PEP requires. If you're happy with the current patch, go ahead, let's have it for 3.2; I don'

[issue10155] Add fixups for encoding problems to wsgiref

2010-12-17 Thread Phillip J. Eby
Phillip J. Eby added the comment: So, do you have any suggestions for a specific change to the patch? -- ___ Python tracker ___ ___ P

[issue10155] Add fixups for encoding problems to wsgiref

2010-11-03 Thread And Clover
And Clover added the comment: Thanks. Some of those additions in _needs_transcode are potentially controversial, though. I'm not wholly sure it's the right thing to transcode these. Some of them may not actually come from the request, eg `REMOTE_USER` may be filled in by IIS's Windows authen

[issue10155] Add fixups for encoding problems to wsgiref

2010-11-03 Thread Phillip J. Eby
Phillip J. Eby added the comment: Committed to Py3K in r86146, with added docs and a larger list of transcodable CGI variables. -- ___ Python tracker ___ __

[issue10155] Add fixups for encoding problems to wsgiref

2010-10-23 Thread And Clover
And Clover added the comment: Ah, sorry, submitted wrong patch against 3.2, disregard. Here's the 'proper' version (the functionality isn't changed, just the former patch had an unused and-Falsed out clause for reading environb, which in the end I decided not to use as the surrogateescape app

[issue10155] Add fixups for encoding problems to wsgiref

2010-10-23 Thread And Clover
Changes by And Clover : Removed file: http://bugs.python.org/file19303/wsgiref-patches-3.2a3.patch ___ Python tracker ___ ___ Python-bugs-list

[issue10155] Add fixups for encoding problems to wsgiref

2010-10-22 Thread Éric Araujo
Éric Araujo added the comment: Your patch adds a new handler, which is arguably a new feature that has to be rejected in a bugfix branch. -- nosy: +eric.araujo versions: +Python 3.1 ___ Python tracker ___

[issue10155] Add fixups for encoding problems to wsgiref

2010-10-20 Thread Senthil Kumaran
Changes by Senthil Kumaran : -- nosy: +orsenthil ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue10155] Add fixups for encoding problems to wsgiref

2010-10-20 Thread Ned Deily
Changes by Ned Deily : -- nosy: +pje ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mai

[issue10155] Add fixups for encoding problems to wsgiref

2010-10-20 Thread And Clover
And Clover added the comment: (same again for branch PJ Eby's wsgiref svn: same as previous 2.7 patch aside from the line numbers) -- Added file: http://bugs.python.org/file19309/wsgiref-patches-eby2692.patch ___ Python tracker

[issue10155] Add fixups for encoding problems to wsgiref

2010-10-20 Thread And Clover
And Clover added the comment: (patch for Python 2.x, for what it's worth) -- Added file: http://bugs.python.org/file19304/wsgiref-patches-2.7.patch ___ Python tracker ___ __

[issue10155] Add fixups for encoding problems to wsgiref

2010-10-20 Thread And Clover
New submission from And Clover : Currently wsgiref's CGIHandler makes a WSGI environ from the CGI environ without changes. Unfortunately the CGI environ is wrong in a number of common circumstances: - on Windows, the native environ is Unicode, and different servers choose different decodings