Is an int in Python 4 bytes? Is there a possibility to have a 64-byte 'long long' like in C++?
Trying to assign a variable:
a = 1234567891011121314
Gives this error:
error: can't allocate region
Is an int in Python 4 bytes? Is there a possibility to have a 64-byte 'long long' like in C++?
Trying to assign a variable:
a = 1234567891011121314
Gives this error:
error: can't allocate region
Python can handle arbitrary int sizes. The error you have indicates that python is trying to malloc
more memory, but failed. You probably have a memory leak somewhere.