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.py optional allow_none argument
Type: Stage:
Components: Library (Lib) Versions: Python 2.5
process
Status: closed Resolution: accepted
Dependencies: Superseder:
Assigned To: akuchling Nosy List: akuchling, lzou, mmcclain, titus
Priority: normal Keywords: patch

Created on 2004-02-09 19:59 by lzou, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
SimpleXMLRPCServer.diff lzou, 2004-02-09 19:59
Messages (5)
msg45370 - (view) Author: Li Zou (lzou) Date: 2004-02-09 19:59
xmlrpclip.ServerProxy support an optional allow_none 
argument while SimpleXMLRPCServer.py doesn't. This 
patch is a straightforward one to fix it.
msg45371 - (view) Author: Mark McClain (mmcclain) Date: 2004-02-17 21:54
Logged In: YES 
user_id=978042

The patch needs to address the CGIXMLDispatcher too. Otherwise it is the 
same as the one that I did last fall, but have been slow to post here.
msg45372 - (view) Author: Mark McClain (mmcclain) Date: 2004-02-17 21:57
Logged In: YES 
user_id=978042

The patch needs to address the CGIXMLDispatcher too. Otherwise it is the 
same as the one that I did last fall, but have been slow to post here.
msg45373 - (view) Author: Titus Brown (titus) Date: 2004-12-19 09:13
Logged In: YES 
user_id=23486

Updated patch to fix CGIXMLRPCRequestHandler & added patch to Lib/ 
documentation.

New diffs against current head available at

http://issola.caltech.edu/~t/transfer/patch-893642-xmlrpc.diff

This patch should not change any behavior.  It only allows overriding
of default behavior (which is to not allow_none).  Recommend apply.
msg45374 - (view) Author: A.M. Kuchling (akuchling) * (Python committer) Date: 2005-12-04 16:35
Logged In: YES 
user_id=11375

Applied in rev.41589; thanks!

History
Date User Action Args
2022-04-11 14:56:02adminsetgithub: 39922
2004-02-09 19:59:41lzoucreate