(04-23-2020, 01:22 PM)remkonoteboom Wrote: Are you saying that the Python 3 server is returning a integer through xmlrpc as an int that the python2 client can't handle because the integer sent from python3 is too large for python2?Yes!
You can check this if you try to get long int from python3 server with python2 client.
Simple example to check (server is a TacticServerStub on client):
Code:
code = {'code': 'return 123456789012'}
server.execute_python_script('', kwargs=code)
By the way, this case couldn't happen on js, because it is already uses json