This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Line ending bug SimpleXMLRPCServer
Type: behavior Stage: test needed
Components: Library (Lib) Versions: Python 2.6
process
Status: closed Resolution: wont fix
Dependencies: Superseder:
Assigned To: Nosy List: bgrubbs, georg.brandl
Priority: normal Keywords: patch

Created on 2007-05-25 01:45 by bgrubbs, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
SimpleXMLRPCServer.py.diff bgrubbs, 2007-05-25 01:45
Messages (2)
msg52663 - (view) Author: bgrubbs (bgrubbs) Date: 2007-05-25 01:45
Apache on windows generates an incorrect Content-length
because \n is converted to \r\n if stdout is a terminal
unless it is set to binary mode

This patch fixes the issue: Apache on win32 using CGIXMLRPCRequestHandler returns incorrect Content-length
msg84980 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2009-04-01 04:38
CGI specifies \r\n line ends anyway, so this patch goes in the wrong
direction.
History
Date User Action Args
2022-04-11 14:56:24adminsetgithub: 44992
2009-04-01 04:39:03georg.brandlsetstatus: open -> closed

nosy: + georg.brandl
messages: + msg84980

resolution: wont fix
2009-03-30 23:38:24ajaksu2settype: behavior
stage: test needed
2007-05-25 01:45:11bgrubbscreate