-
-
Notifications
You must be signed in to change notification settings - Fork 31.9k
bpo-7769: enable xmlrpc.server.SimpleXMLRPCDispatcher.register_function used as decorator #231
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
87fef8d
fde883e
c0c01b0
d4104eb
51a3353
a1e0ba5
a19d74e
eaa27d9
8a3f4c3
391b140
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -79,13 +79,19 @@ The :class:`SimpleXMLRPCServer` class is based on | |
alone XML-RPC servers. | ||
|
||
|
||
.. method:: SimpleXMLRPCServer.register_function(function, name=None) | ||
.. method:: SimpleXMLRPCServer.register_function(function=None, name=None) | ||
|
||
Register a function that can respond to XML-RPC requests. If *name* is given, | ||
it will be the method name associated with *function*, otherwise | ||
``function.__name__`` will be used. *name* can be either a normal or Unicode | ||
string, and may contain characters not legal in Python identifiers, including | ||
the period character. | ||
``function.__name__`` will be used. *name* is a string, and may contain | ||
characters not legal in Python identifiers, including the period character. | ||
|
||
This method can also be used as a decorator. When used as a decorator, | ||
*name* can only be given as a keyword argument to register *function* under | ||
*name*. If no *name* is given, ``function.__name__`` will be used. | ||
|
||
.. versionchanged:: 3.7 | ||
:meth:`register_function` can be used as a decorator. | ||
|
||
|
||
.. method:: SimpleXMLRPCServer.register_instance(instance, allow_dotted_names=False) | ||
|
@@ -148,7 +154,7 @@ Server code:: | |
rpc_paths = ('/RPC2',) | ||
|
||
# Create server | ||
with SimpleXMLRPCServer(("localhost", 8000), | ||
with SimpleXMLRPCServer(('localhost', 8000), | ||
requestHandler=RequestHandler) as server: | ||
server.register_introspection_functions() | ||
|
||
|
@@ -157,7 +163,7 @@ Server code:: | |
server.register_function(pow) | ||
|
||
# Register a function under a different name | ||
def adder_function(x,y): | ||
def adder_function(x, y): | ||
return x + y | ||
server.register_function(adder_function, 'add') | ||
|
||
|
@@ -185,6 +191,37 @@ server:: | |
# Print list of available methods | ||
print(s.system.listMethods()) | ||
|
||
:meth:`register_function` can also be used as a decorator. The previous server | ||
example can register functions in a decorator way:: | ||
|
||
from xmlrpc.server import SimpleXMLRPCServer | ||
from xmlrpc.server import SimpleXMLRPCRequestHandler | ||
|
||
class RequestHandler(SimpleXMLRPCRequestHandler): | ||
rpc_paths = ('/RPC2',) | ||
|
||
with SimpleXMLRPCServer(('localhost', 8000), | ||
requestHandler=RequestHandler) as server: | ||
server.register_introspection_functions() | ||
|
||
# Register pow() function; this will use the value of | ||
# pow.__name__ as the name, which is just 'pow'. | ||
server.register_function(pow) | ||
|
||
# Register a function under a different name, using | ||
# register_function as a decorator. *name* can only be given | ||
# as a keyword argument. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. keyword -> keyword-only? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think "can only be given as a keyword argument" is same as "keyword-only argument". :-) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I mean there is already a shorter way to say the same thing in Python. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think the term "keyword-only" is applicable only to parameters, not arguments. Parameters can be positional-only (can't be defined in Python syntax), positional-or-keyword or keyword-only. Arguments can be positional or keyword. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I changed the sentence to “*name* is keyword-only". Since *name* is wrapped with asterisks, it's referring to a parameter. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. But the name parameter is not keyword-only. It is positional-or-keyword. The former wording looked correct to me, the changed wording don't. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. :-( |
||
@server.register_function(name='add') | ||
def adder_function(x, y): | ||
return x + y | ||
|
||
# Register a function under function.__name__. | ||
@server.register_function | ||
def mul(x, y): | ||
return x * y | ||
|
||
server.serve_forever() | ||
|
||
The following example included in the :file:`Lib/xmlrpc/server.py` module shows | ||
a server allowing dotted names and registering a multicall function. | ||
|
||
|
@@ -252,17 +289,23 @@ This client which interacts with the demo XMLRPC server can be invoked as:: | |
CGIXMLRPCRequestHandler | ||
----------------------- | ||
|
||
The :class:`CGIXMLRPCRequestHandler` class can be used to handle XML-RPC | ||
The :class:`CGIXMLRPCRequestHandler` class can be used to handle XML-RPC | ||
requests sent to Python CGI scripts. | ||
|
||
|
||
.. method:: CGIXMLRPCRequestHandler.register_function(function, name=None) | ||
.. method:: CGIXMLRPCRequestHandler.register_function(function=None, name=None) | ||
|
||
Register a function that can respond to XML-RPC requests. If *name* is given, | ||
it will be the method name associated with *function*, otherwise | ||
``function.__name__`` will be used. *name* is a string, and may contain | ||
characters not legal in Python identifiers, including the period character. | ||
|
||
This method can also be used as a decorator. When used as a decorator, | ||
*name* can only be given as a keyword argument to register *function* under | ||
*name*. If no *name* is given, ``function.__name__`` will be used. | ||
|
||
Register a function that can respond to XML-RPC requests. If *name* is given, | ||
it will be the method name associated with function, otherwise | ||
*function.__name__* will be used. *name* can be either a normal or Unicode | ||
string, and may contain characters not legal in Python identifiers, including | ||
the period character. | ||
.. versionchanged:: 3.7 | ||
:meth:`register_function` can be used as a decorator. | ||
|
||
|
||
.. method:: CGIXMLRPCRequestHandler.register_instance(instance) | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the name -> *name*?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmm, it's not referring to the parameter here. So just leave it unchanged.