newbie question - identifying name of method

M

mirandacascade

Does Python provide some sort of mechanism for answering the question:
what method am I in?

Example: assume the file example1.py contains the following code:

def driver():
print 'hello world'
print __name__
print 'the name of this method is %s' % str(???)

The output I'd like to see is:

hello world
example1
driver

and I'd like to be able to see it without hardcoding the string
'driver' in the third print statement. Is there anything I can
substitute for the ??? that answers the question: what method am I in?
 
F

Fredrik Lundh

Does Python provide some sort of mechanism for answering the question:
what method am I in?

Example: assume the file example1.py contains the following code:

def driver():
print 'hello world'
print __name__
print 'the name of this method is %s' % str(???)

The output I'd like to see is:

hello world
example1
driver

and I'd like to be able to see it without hardcoding the string
'driver' in the third print statement. Is there anything I can
substitute for the ??? that answers the question: what method am I in?

replace str(???) with

(sys._getframe().f_code.co_name or "???")

</F>
 
T

Terry Reedy

Does Python provide some sort of mechanism for answering the question:
what method am I in?

I believe that Python, the language defined in the Ref Manual, does not.
The CPython implementation adds enough introspection into its workings that
you can get at the function code definition name, with the simplest method
being the one given by Fredrik. If you want the names currently bound to
the function object in a particular namespace, you have to do something
else.

Terry J. Reedy
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,055
Latest member
SlimSparkKetoACVReview

Latest Threads

Top