(self, co)
| 1861 | RECORDERS = CallRecorder, LineRecorder, CRaiseRecorder, CReturnRecorder |
| 1862 | |
| 1863 | def _exec(self, co): |
| 1864 | d = {} |
| 1865 | exec(co, d, d) |
| 1866 | return d |
| 1867 | |
| 1868 | def _exec_super(self, codestr, optimized=False): |
| 1869 | # The compiler checks for statically visible shadowing of the name |
no outgoing calls
no test coverage detected