Hi!
I just switched to python3 with TACTIC 4.7.
It is AMAZINGLY FAST, so i don't even think to go back python2. But.
I have some things that is breaking the party.
When i use my python2 client (i have no choise, because of maya and etc) i got some errors:
Investigating it deeper if dound that problem is with long int
(It is 2 Gb file, and long st_size column)
print type(2220805012)
print type(222080512)
python2 will output this as:
<type 'long'>
<type 'int'>
But python3 uses int in both.
What i can do about it?
Thanks!
I just switched to python3 with TACTIC 4.7.
It is AMAZINGLY FAST, so i don't even think to go back python2. But.
I have some things that is breaking the party.
When i use my python2 client (i have no choise, because of maya and etc) i got some errors:
Code:
File "C:\Python27x64\Lib\xmlrpclib.py", line 1243, in __call__
return self.__send(self.__name, args)
File "C:\Python27x64\Lib\xmlrpclib.py", line 1602, in __request
verbose=self.__verbose
File "D:\APS\OneDrive\MEGAsync\TACTIC-handler\thlib\proxy.py", line 126, in request
return self.parse_response(response)
File "C:\Python27x64\Lib\xmlrpclib.py", line 1493, in parse_response
return u.close()
File "C:\Python27x64\Lib\xmlrpclib.py", line 800, in close
raise Fault(**self._stack[0])
Fault: <Fault 1: 'int exceeds XML-RPC limits'>
Investigating it deeper if dound that problem is with long int
(It is 2 Gb file, and long st_size column)
print type(2220805012)
print type(222080512)
python2 will output this as:
<type 'long'>
<type 'int'>
But python3 uses int in both.
What i can do about it?
Thanks!