(self, *args, **kwargs)
| 82 | print(f"RustPython panic stack:", stack, file=sys.stderr, sep="\n") |
| 83 | |
| 84 | def execute_script(self, *args, **kwargs): |
| 85 | try: |
| 86 | return super().execute_script(*args, **kwargs) |
| 87 | except JavascriptException: |
| 88 | self._print_panic() |
| 89 | raise |
| 90 | |
| 91 | |
| 92 | @pytest.fixture |
no test coverage detected