Re: [PATCH v3 2/3] dts: Add missing docstring from XML-RPC server

2024-06-17 Thread Jeremy Spewock
On Fri, Jun 14, 2024 at 4:48 PM Nicholas Pratte wrote: > > Just a small nitpick. Otherwise: > > Reviewed-by: Nicholas Pratte > > > > class QuittableXMLRPCServer(SimpleXMLRPCServer): > > -"""Basic XML-RPC server. > > +r"""Basic XML-RPC server. > > > > The server may be augmented by

Re: [PATCH v3 2/3] dts: Add missing docstring from XML-RPC server

2024-06-17 Thread Luca Vizzarro
Reviewed-by: Luca Vizzarro

Re: [PATCH v3 2/3] dts: Add missing docstring from XML-RPC server

2024-06-14 Thread Nicholas Pratte
Just a small nitpick. Otherwise: Reviewed-by: Nicholas Pratte > class QuittableXMLRPCServer(SimpleXMLRPCServer): > -"""Basic XML-RPC server. > +r"""Basic XML-RPC server. > > The server may be augmented by functions serializable by the > :mod:`marshal` module. > + > +Example:

Re: [PATCH v3 2/3] dts: Add missing docstring from XML-RPC server

2024-06-07 Thread Juraj Linkeš
On 29. 5. 2024 21:49, jspew...@iol.unh.edu wrote: From: Jeremy Spewock When this XML-RPC server implementation was added, the docstring had to be shortened in order to reduce the chances of this race condition being encountered. Now that this race condition issue is resolved, the full docstr

Re: [PATCH v3 2/3] dts: Add missing docstring from XML-RPC server

2024-05-31 Thread Luca Vizzarro
Reviewed-by: Luca Vizzarro

[PATCH v3 2/3] dts: Add missing docstring from XML-RPC server

2024-05-29 Thread jspewock
From: Jeremy Spewock When this XML-RPC server implementation was added, the docstring had to be shortened in order to reduce the chances of this race condition being encountered. Now that this race condition issue is resolved, the full docstring can be restored. Signed-off-by: Jeremy Spewock --