In Python without using the traceback module, is there a way to determine a function's name from within that function?

Say I have a module foo with a function bar. When executing foo.bar(), is there a way for bar to know bar's name? Or better yet, foo.bar's name?

#foo.py  
def bar():
    print "my name is", __myname__ # <== how do I calculate this at runtime?
link|improve this question

4  
"calculate this at runtime"? It's "bar". What problem do you have that prevents you from copying and pasting the name? – S.Lott Feb 21 '11 at 15:13
@S.Lott --- More curiosity than specific problem. Python affords a wealth of introspection and I (incorrectly) assumed that this functionality exists and I just couldn't figure it out. – Rob Feb 21 '11 at 15:28
feedback

4 Answers

up vote 5 down vote accepted

Python doesn't have a feature to access the function or its name within the function itself. It has been proposed but rejected. If you don't want to play with the stack yourself, you should either use "bar" or bar.__name__ depending on context.

link|improve this answer
that explains my struggles. – Rob Feb 21 '11 at 15:29
feedback
import inspect

def foo():
   print inspect.stack()[0][3]
link|improve this answer
+1 Just what I was about to say. – senderle Feb 21 '11 at 15:23
Thank you for the quick response. I'm still a bit green and hadn't come across the inspect module yet, but will starting playing with it now. – Rob Feb 21 '11 at 15:31
feedback

You can get the name that it was defined with using the approach that @Andreas Jung shows, but that may not be the name that the function was called with:

import inspect

def Foo():
   print inspect.stack()[0][3]

Foo2 = Foo

>>> Foo()
Foo

>>> Foo2()
Foo

Whether that distinction is important to you or not I can't say.

link|improve this answer
feedback

I guess inspect is the best way to do this. Example:

import inspect
def bar():
    print "My name is", inspect.stack()[0][3]
link|improve this answer
Ah, as Andreas suggested while I was typing this :). – Bjorn Feb 21 '11 at 15:21
Thank you too for the quick response – Rob Feb 21 '11 at 15:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.