(self, code_string, ns)
| 669 | )) |
| 670 | |
| 671 | def _replacing_exec(self, code_string, ns): |
| 672 | co = compile(code_string, "<string>", "exec") |
| 673 | co = self._recursive_replace(co) |
| 674 | exec(co, ns) |
| 675 | |
| 676 | def test_code_replace(self): |
| 677 | code = """ |
nothing calls this directly
no test coverage detected