On 01/11/2016 08:39 PM, Ben Pfaff wrote:
> On Wed, Jan 06, 2016 at 03:50:25PM -0500, Russell Bryant wrote:
>> Fix imports of xmlrpclib to be compatible with Python 3. Python 2 had
>> xmlrpclib (client) and SimpleXMLRPCServer (server). In Python 3, these
>> have been renamed to xmlrpc.client and x
On Wed, Jan 06, 2016 at 03:50:25PM -0500, Russell Bryant wrote:
> Fix imports of xmlrpclib to be compatible with Python 3. Python 2 had
> xmlrpclib (client) and SimpleXMLRPCServer (server). In Python 3, these
> have been renamed to xmlrpc.client and xmlrpc.server.
>
> The solution implemented he
Fix imports of xmlrpclib to be compatible with Python 3. Python 2 had
xmlrpclib (client) and SimpleXMLRPCServer (server). In Python 3, these
have been renamed to xmlrpc.client and xmlrpc.server.
The solution implemented here is to use the six library. It may seem
excessive for this particular i