mirror of
https://github.com/python/cpython.git
synced 2025-11-01 14:11:41 +00:00
Cleanup xmlrpc: remove obsolete comments, unused imports. Add test for bytes marshalling.
This commit is contained in:
parent
3fa29f7cd7
commit
c4fec937dc
3 changed files with 11 additions and 21 deletions
|
|
@ -329,7 +329,6 @@ def system_methodHelp(self, method_name):
|
|||
if method is None:
|
||||
return ""
|
||||
else:
|
||||
import pydoc
|
||||
return pydoc.getdoc(method)
|
||||
|
||||
def system_multicall(self, call_list):
|
||||
|
|
@ -560,7 +559,7 @@ class SimpleXMLRPCServer(socketserver.TCPServer,
|
|||
Simple XML-RPC server that allows functions and a single instance
|
||||
to be installed to handle requests. The default implementation
|
||||
attempts to dispatch XML-RPC calls to the functions or instance
|
||||
installed in the server. Override the _dispatch method inhereted
|
||||
installed in the server. Override the _dispatch method inherited
|
||||
from SimpleXMLRPCDispatcher to change this behavior.
|
||||
"""
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue