Ok, so I have a function that takes a function as an argument.
I would like to append the actual name of the function (not a member) that has been passed in...
def a_specially_named_function(g):
return ()
def analyze_function(function):
print ...
analyze_function(a_specially_named_function)
>>> "a_specially_named_function"
How would I do this? In .NET I believe I would use reflections...I would like to do this without having to add members or anything...