Open tirkarthi opened 4 years ago
Ok so we might still be able to keep async
on the function side, for backward compatibility, and add a new alias keyword. Just need to find a good name...
async_result = client.add(1, 4, async_result=True)
maybe...
while... really not ideal, a workaround for the existing code..
client.add(**{'async': True, 'a': 1, 'b': 4})
async is a keyword from Python 3.7 so tests will fail with SyntaxError in Python 3.7 and above