method: code.Frame.exec_

*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 

call sites:

called in /home/johnny/projects/merlinux/py/dist/py/magic/exprinfo.py

traceback code.Frame.exec_.0