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: SimpleXMLRPCServer optional allow_none / encoding arguments
Type: Stage:
Components: XML Versions: Python 2.5
process
Status: closed Resolution: accepted
Dependencies: Superseder:
Assigned To: akuchling Nosy List: akuchling, guillon
Priority: normal Keywords: patch

Created on 2004-10-02 17:40 by guillon, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
SimpleXMLRPCServer.py.patch guillon, 2004-10-02 17:50 Generated against SimpleXMLRPCServer.py v1.8 using diff -c SimpleXMLRPCServer.py.1.8 SimpleXMLRPCServer.py.patched
Messages (4)
msg47017 - (view) Author: Guillermo M. Narvaja (guillon) Date: 2004-10-02 17:40
xmlrpclip.ServerProxy supports an optional allow_none
and encoding 
arguments while SimpleXMLRPCServer.py doesn't.

The patch adds optional arguments to
SimpleXMLRPCDispatcher, SimpleXMLRPCServer and
CGIXMLRPCRequestHandler.

"encoding" and "allow_none" arguments are passed to
xmlrpclib.dumps calls in _marshalled_dispatch method.

msg47018 - (view) Author: Guillermo M. Narvaja (guillon) Date: 2004-10-02 17:50
Logged In: YES 
user_id=1132014

Fixed some large lines to fit in 78 columns.
msg47019 - (view) Author: Guillermo M. Narvaja (guillon) Date: 2004-10-02 17:52
Logged In: YES 
user_id=1132014

Old file removed.
msg47020 - (view) Author: A.M. Kuchling (akuchling) * (Python committer) Date: 2005-12-04 17:13
Logged In: YES 
user_id=11375

Applied to rev41591; thanks for your patch!

History
Date User Action Args
2022-04-11 14:56:07adminsetgithub: 40978
2004-10-02 17:40:08guilloncreate