I am working with a code base which contains a line which I really can't understand:
x, x, z = getattr(ReceiveFile, maxsizes)(input, args)
So if it didn't have the second tuple at the end it would be just
x, y, z = ReceiveFile.maxsizes
How do I interpret that tuple at the end (input, args)
? I can't that easily run this code and play with a debugger to come to an understanding..