Welcome, guest | Sign In | My Account | Store | Cart
#This is fork of the recipe 577283 "Decorator to expose local variables of a function after execution"
#available at http://code.activestate.com/recipes/577283-decorator-to-expose-local-variables-of-a-function-/.
class persistent_locals2(object):
    def __init__(self, func):
        self._locals = {}
        self.func = func

    def __call__(self, *args, **kwargs):
        def tracer(frame, event, arg):
            if event=='return':
                self._locals = frame.f_locals.copy()

        # tracer is activated on next call, return or exception
        sys.setprofile(tracer)
        try:
            # trace the function call
            res = self.func(*args, **kwargs)
        finally:
            # disable tracer and replace with old one
            sys.setprofile(None)
        return res

    def clear_locals(self):
        self._locals = {}

    @property
    def locals(self):
        return self._locals

Diff to Previous Revision

--- revision 5 2010-07-07 20:06:40
+++ revision 6 2010-07-08 09:44:28
@@ -1,4 +1,5 @@
-#This is fork of the recipe 577283 "Decorator to expose local variables of a function after execution" available at http://code.activestate.com/recipes/577283-decorator-to-expose-local-variables-of-a-function-/.
+#This is fork of the recipe 577283 "Decorator to expose local variables of a function after execution"
+#available at http://code.activestate.com/recipes/577283-decorator-to-expose-local-variables-of-a-function-/.
 class persistent_locals2(object):
     def __init__(self, func):
         self._locals = {}

History