Remove added symbols from the globals.
(self)
| 418 | globals["exit"] = exit() |
| 419 | |
| 420 | def _remove_from_namespace(self) -> None: |
| 421 | """ |
| 422 | Remove added symbols from the globals. |
| 423 | """ |
| 424 | globals = self.get_globals() |
| 425 | del globals["get_ptpython"] |
| 426 | |
| 427 | def print_paginated_formatted_text( |
| 428 | self, |
no test coverage detected