Skip to content

Instantly share code, notes, and snippets.

@girish
Forked from mashiro/env.py
Created October 18, 2010 07:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save girish/631861 to your computer and use it in GitHub Desktop.
Save girish/631861 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import inspect
def ulocals(n):
frame = inspect.stack()[n][0]
return frame.f_locals
def uglobals(n):
frame = inspect.stack()[n][0]
return frame.f_globals
class Foo(object):
def __init__(self, locals=None, globals=None):
self.locals = locals or ulocals(2)
self.globals = globals or uglobals(2)
def __call__(self):
print self.locals
#print self.globals
def main():
value = 'local variable'
f = Foo()
f()
if __name__ == '__main__':
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment