(self, result: object)
| 371 | return None |
| 372 | |
| 373 | def _store_eval_result(self, result: object) -> None: |
| 374 | locals: dict[str, Any] = self.get_locals() |
| 375 | locals["_"] = locals[f"_{self.current_statement_index}"] = result |
| 376 | |
| 377 | def get_compiler_flags(self) -> int: |
| 378 | return super().get_compiler_flags() | PyCF_ALLOW_TOP_LEVEL_AWAIT |
no outgoing calls
no test coverage detected