
Do you train Kung Fu?
Or know someone who does?
Then check out KungFuPeople.com
Mobile version of this pageFilm Music by Alfred Schnittke
Next:
Changing the size of a textarea box
Related blogs
Pretty print SQL scriptSpeed test between django_mongokit and postgresql_psycopg2
CSSViewer - new promising Firefox Extension
Related by category
Python inspect module
jacob, inspect, inspect module, galdrion, sql
16th of August 2004
My friend Jacob Lundqvist of Galdrion today showed me a nifty little method I did not know about in Python, namely the inspect module. It allows you to find out what the name of the method was that called the method "you're in". Allow me to show an example:
def foo():
caller_module = inspect.stack()[1][1]
caller_method = inspect.stack()[1][3]
print caller_module, caller_method
return "Something"
def bar():
foo()
if __name__=='__main__':
bar()
And the result is:
C:\Python23\dummy.py bar
I now use this in an internal debug method that prints all SQL statements used before being executed. Every method that needs to execute some SQL will always first send it's SQL statement to the debug method. The debug method can now also show where the SQL came from. Great!


Save this page in del.icio.us
Credits where its due ;)
I got it in my turtn from this article:
http://www.oreillynet.com/pub/wlg/5204