summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2005-12-04 17:13:12 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2005-12-04 17:13:12 (GMT)
commit427aedbbd436a3daa27176b2a57b8e402d1ff0e0 (patch)
tree0d41754be28d3f9004fc7f9d32b8b272af3ea659 /Misc
parentce100d8d4c61cac71e3481345acca3fb5d6bced1 (diff)
downloadcpython-427aedbbd436a3daa27176b2a57b8e402d1ff0e0.zip
cpython-427aedbbd436a3daa27176b2a57b8e402d1ff0e0.tar.gz
cpython-427aedbbd436a3daa27176b2a57b8e402d1ff0e0.tar.bz2
[Patch #1039083] Add 'encoding' parameter to SimpleXMLRPCServer
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 1 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index bc8382e..7bc24dd 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -454,7 +454,7 @@ Library
- Bug #792570: SimpleXMLRPCServer had problems if the request grew too large.
Fixed by reading the HTTP body in chunks instead of one big socket.read().
-- Patch #893642: add allow_none argument to constructors of
+- Patches #893642, #1039083: add allow_none, encoding arguments to constructors of
SimpleXMLRPCServer and CGIXMLRPCRequestHandler.
- Bug #1110478: Revert os.environ.update to do putenv again.