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
DZone Snippets > manatlan > inspect
12309 users tagging and storing useful source code snippets
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
manatlan http://manatlan.online.fr
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