30
30
def _get_parameters(func):
31
31
"""Recreate the parameters for a function using introspection.
34
34
function_params: is a string representing the parameters of the
35
35
function. (such as "a, b, c=None, d=1")
36
36
This is used in the function declaration.
37
37
calling_params: is another string representing how you would call the
38
38
function with the correct parameters. (such as "a, b, c=c, d=d")
40
40
is the parameters to put in the function call.