*Not documented*
def exec_(self, code, **vars):
origin: code.Frame
where:
exceptions that might appear during execution:
function source:
def exec_(self, code, **vars):
f_locals = self.f_locals.copy()
f_locals.update(vars)
exec code in self.f_globals, f_locals
called in /home/johnny/projects/merlinux/py/dist/py/magic/exprinfo.py