In Python, how do I get the function name as a string without calling the function?
def my_function():
pass
print get_function_name_as_string(my_function) # my_function is not in quotes
should output "my_function".
Is this available in python? If not, any idea how to write get_function_name_as_string in python?