473,403 Members | 2,293 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,403 software developers and data experts.

How can I programmatically find the name of a method from within that method?

Is there a way that I can programmatically find the name of a method I
have created from within that method? I would like to be able to log
a message from within that method (def) and I would like to include
the name of the method from which it was written without having to
hard-code that value in every message string. While we're at it, is
there a way to programmatically get the name of the class and the
module while I'm at it?

Thanks,

Aug 8 '07 #1
9 2074
kj7ny wrote:
Is there a way that I can programmatically find the name of a method I
have created from within that method? I would like to be able to log
a message from within that method (def) and I would like to include
the name of the method from which it was written without having to
hard-code that value in every message string. While we're at it, is
there a way to programmatically get the name of the class and the
module while I'm at it?
This is a frequently asked question around here :-)

You should search the list archives for past threads, e.g:
http://aspn.activestate.com/ASPN/Mai...n-list/3542665

-Jay
Aug 8 '07 #2
On Aug 7, 10:09 pm, Jay Loden <pyt...@jayloden.comwrote:
kj7ny wrote:
Is there a way that I can programmatically find the name of a method I
have created from within that method? I would like to be able to log
a message from within that method (def) and I would like to include
the name of the method from which it was written without having to
hard-code that value in every message string. While we're at it, is
there a way to programmatically get the name of the class and the
module while I'm at it?

This is a frequently asked question around here :-)

You should search the list archives for past threads, e.g:http://aspn.activestate.com/ASPN/Mai...n-list/3542665

-Jay
Thanks for the link. I had actually searched the past threads, but
apparently didn't enter the right search criteria because I did not
find that thread. Or, that thread isn't findable by searching Google
groups?

I tried the example in the interpreter and it appears to work.
Despite my years and years of programming in python, I am a bit
baffled by the example though. What is @checkPrivs (see example
copied below from other post)? In fact... how does the thing work at
all?

------------------------------------------
def checkPrivs(fn):
fnName = fn.func_name
def restricted(*args):
print "about to call function", fnName
if fnName in listOfAllowedFunctions:
return fn(*args)
else:
raise KeyError("you don't have sufficient privileges to do
THAT")
return restricted

listOfAllowedFunctions = ['add','subtract']

@checkPrivs
def add(a,b):
return a+b

@checkPrivs
def subtract(a,b):
return a-b

@checkPrivs
def multiply(a,b):
return a*b

add(1,2)
subtract(4,1)
multiply(3,2)

Aug 8 '07 #3
kj7ny wrote:
What is @checkPrivs (see example copied below from other post)? In
fact... how does the thing work at all?
@checkPrivs
def add(a,b):
return a+b
@... is called a decorator and is just a fancy way of writing

def add(a, b):
return a+b
add = checkPrivs(add)

Peter
Aug 8 '07 #4
On Aug 8, 8:25 am, Peter Otten <__pete...@web.dewrote:
kj7ny wrote:
What is @checkPrivs (see example copied below from other post)? In
fact... how does the thing work at all?
@checkPrivs
def add(a,b):
return a+b

@... is called a decorator and is just a fancy way of writing

def add(a, b):
return a+b
add = checkPrivs(add)

Peter
Is this cheating?

class a:
def square(self, x):

print 'executing:', dir(self)[-1]
print x*x
def cube(self, x):
print 'executing:', dir(self)[-2]
print x*x*x

b=a()

b.square(3)
b.cube(3)
Output:

PyMate r6780 running Python 2.3.5 (python)
>>function self naming2.py
executing: square
9
executing: cube
27

Aug 8 '07 #5
Tony wrote:
Is this cheating?
Isn't it harder to calculate the magic indices than just writing down the
names twice?
class a:
********def square(self, x):
****************print 'executing:', dir(self)[-1]
****************print x*x
********def cube(self, x):
****************print 'executing:',*****dir(self)[-2]
****************print x*x*x

b=a()
b.square(3)
b.cube(3)
Output:

PyMate r6780 running Python 2.3.5 (python)
>function self naming2.py

executing: square
9
executing: cube
27
Is this cheating?
No, just wrong.
>class A:
.... def alpha(self): return dir(self)[-2]
.... def gamma(self): return dir(self)[-1]
....
>>a = A()
a.alpha(), a.gamma()
('alpha', 'gamma')
>>a.beta = 42
a.alpha(), a.gamma()
('beta', 'gamma')

Peter
Aug 8 '07 #6
On Aug 8, 9:28 pm, Peter Otten <__pete...@web.dewrote:
No, just wrong.
class A:

... def alpha(self): return dir(self)[-2]
... def gamma(self): return dir(self)[-1]
...>>a = A()
>a.alpha(), a.gamma()
('alpha', 'gamma')
>a.beta = 42
a.alpha(), a.gamma()

('beta', 'gamma')

Peter
Only wrong if the function is only to write its own name. if it does
something else as well, seems to work:

class a:

def square(self, x):
print 'executing:', dir(self)[-1]
print x*x
def cube(self, x):
print 'executing:', dir(self)[-2]
print x*x*x

b=a()

b.cube(4),b.square(2)
b.c =4
b.cube(3), b.cube(2)

executing: cube
64
executing: square
4
executing: cube
27
executing: cube
8

cheers

Aug 8 '07 #7
On Aug 8, 12:45 am, kj7ny <kj...@nakore.comwrote:
Is there a way that I can programmatically find the name of a method I
have created from within that method? I would like to be able to log
a message from within that method (def) and I would like to include
the name of the method from which it was written without having to
hard-code that value in every message string. While we're at it, is
there a way to programmatically get the name of the class and the
module while I'm at it?

Thanks,
def foo():
print sys._getframe(0).f_code.co_name

most of the darkest magic of python is in the frames returned by
sys._getframe.

Aug 9 '07 #8
On Aug 8, 10:43 pm, faulkner <faulkner...@gmail.comwrote:
On Aug 8, 12:45 am, kj7ny <kj...@nakore.comwrote:
Is there a way that I can programmatically find the name of a method I
have created from within that method? I would like to be able to log
a message from within that method (def) and I would like to include
the name of the method from which it was written without having to
hard-code that value in every message string. While we're at it, is
there a way to programmatically get the name of the class and the
module while I'm at it?
Thanks,

def foo():
print sys._getframe(0).f_code.co_name

most of the darkest magic of python is in the frames returned by
sys._getframe.
sorry for the double-post. i forgot to answer the rest of the
question.

class a:
def b(self, *a):
print sys._getframe(0).f_code.co_name
print self.__class__.__name__
print getattr(self,
sys._getframe(0).f_code.co_name).im_class.__name__
print self.__class__.__module__

def log(f):
def newf(*a, **kw):
if a and f.func_code.co_varnames[0] == 'self': print '%s.%s.%s
%r %r' % (a[0].__class__.__module__, a[0].__class__.__name__,
f.func_name, a, kw)
else: print '%s.%s %r %r' % (f.func_globals['__name__'],
f.func_name, a, kw)
f(*a, **kw)
newf.__name__ = f.__name__
newf.__doc__ = f.__doc__
return newf

you can find more interesting attributes of frame and function objects
using the builtin dir function.

Aug 9 '07 #9
Tony wrote:
On Aug 8, 9:28 pm, Peter Otten <__pete...@web.dewrote:
>No, just wrong.
>class A:

... def alpha(self): return dir(self)[-2]
... def gamma(self): return dir(self)[-1]
...>>a = A()
>>a.alpha(), a.gamma()
('alpha', 'gamma')
>>a.beta = 42
a.alpha(), a.gamma()

('beta', 'gamma')

Peter
Only wrong if the function is only to write its own name. if it does
something else as well, seems to work:

class a:

********def square(self, x):
****************print 'executing:', dir(self)[-1]
****************print x*x
********def cube(self, x):
****************print 'executing:',*****dir(self)[-2]
****************print x*x*x

b=a()

b.cube(4),b.square(2)
b.c =4
b.cube(3), b.cube(2)
You mean

b.cube(3), b.square(2)
executing: cube
64
executing: square
4
executing: cube
27
executing: cube
8
Yeah, cargo cult programming, I love it.

dir() sorts attribute names alphabetically. Therefore the tail of the list
you are accessing will only be altered if you choose a name >
min(other_names), i. e. a name that comes after "cube" in the alphabet. Try
setting

b.root = 42

if you don't believe me.

Peter
Aug 9 '07 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
by: Victor Hadianto | last post by:
Hi, If I have an XmlDocument DOM how do I insert <?mso-application progid="ProgId.Here"?> programmatically? -- Victor Hadianto http://www.synop.com/Products/SauceReader/
20
by: 2pac | last post by:
in this scenario foo1 ---calls---> foo2 is it possible for me to print out - when the control is within foo2 - the caller of foo2 the information is obviously there in the stack - am wondering...
5
by: Helen | last post by:
Hi, I am trying to write an ASP.Net application that integrates with a third party application via their fairly simplistic web component, however I am having problems with the URI. The URI...
3
by: eSolTec, Inc. 501(c)(3) | last post by:
Thank you in advance for any and all assistance, it is GREATLY appreciated. I'm wondering if there is a way to duplicate a function in regedit of find and find next for keywords programmatically,...
7
by: Dale Sampson | last post by:
As you can tell, I am new to VS.net. I have a VB project with a defined data source pointing to a table in a ..mdb file.-- The associated fields are displayed in textboxes using the...
3
by: Merk | last post by:
How can I programmatically determine the from within that method. For example, consider the following code: private void DoSomething() { string s = ???; }
5
by: ~~~ .NET Ed ~~~ | last post by:
Well the subject says it all but I am going to elaborate a bit. As we all now since 2.0 it is possible to access the Header from code behind without much wizardry and that is a good thing. ...
2
by: ChrisCicc | last post by:
Hi All, I got a real doozy here. I have read hundreds upon hundreds of forum posts and found numerous others who have replicated this problem, but have yet to find a solution. Through testing I have...
3
by: Peter | last post by:
Hi I want to programmatically perform a post. Can some one please give me some pointers to which classes I need to use to achieve this? The form which is normally posted from the website looks...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.