get_function_name

get_function_name#

get_function_name() str[source]#

Get the name of the function where this one is launched.

Returns:

Function’s name

Return type:

str

Example

>>> def huhuhu():
>>>     return get_function_name()
>>> huhuhu()
"huhuhu"