Re: Error running xmlrpc Client and server under different Python versions

2013-06-20 Thread Fábio Santos
On 20 Jun 2013 08:46, wrote: > > Hello. > > I need to run xmlrpc Server under Python 3.3 and Client under Python 2.7. But when I try to do so, I receive the following exception: > > ":global name 'xmlrpclib' is not defined" Somewhere in your code you are trying to use the name 'xmlrpclib' but it

Re: Error running xmlrpc Client and server under different Python versions

2013-06-20 Thread Mark Lawrence
On 20/06/2013 08:36, stanislav.boriso...@gmail.com wrote: Hello. I need to run xmlrpc Server under Python 3.3 and Client under Python 2.7. But when I try to do so, I receive the following exception: ":global name 'xmlrpclib' is not defined" What is the reason for such an exception. As far as

Error running xmlrpc Client and server under different Python versions

2013-06-20 Thread stanislav . borisover
Hello. I need to run xmlrpc Server under Python 3.3 and Client under Python 2.7. But when I try to do so, I receive the following exception: ":global name 'xmlrpclib' is not defined" What is the reason for such an exception. As far as I understand xmlrpc is language independent. Please help.