Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

manatlan http://manatlan.online.fr

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

introspection with python

import inspect

def info():
    loc = inspect.currentframe(1).f_locals # its locals
    glob = inspect.currentframe(1).f_globals # its globals
    fct = inspect.currentframe(1).f_code.co_name #calling function
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS