How can i pass the default values to c extensions like 10,20 ,the below code doesn't take the values for a =10 and b =20. In below code example.py is simple a python code which is calling the c function calculate .
example.py
def Multiply:
calculate( a=10,b =20)
calculate.c extension file
if(! PyArg_ParseTuple(args, "ii" ,&a, &b));
-----------some more code here ------
------------------------------------