En Python, comment puis-je obtenir un nom de fonction sous forme de chaîne, sans appeler la fonction?
def my_function():
pass
print get_function_name_as_string(my_function) # my_function is not in quotes
devrait sortir "my_function"
.
Une telle fonction est-elle disponible en Python? Sinon, des idées sur la façon de mettre en œuvre get_function_name_as_string
, en Python?