Re: [ovs-dev] [PATCH 5/9] python: Fix xmlrpclib imports.

2016-01-12 Thread Russell Bryant
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

Re: [ovs-dev] [PATCH 5/9] python: Fix xmlrpclib imports.

2016-01-11 Thread Ben Pfaff
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

[ovs-dev] [PATCH 5/9] python: Fix xmlrpclib imports.

2016-01-06 Thread Russell Bryant
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