Finish up all displayhook activities.
(self)
| 261 | format_dict['text/plain'] |
| 262 | |
| 263 | def finish_displayhook(self): |
| 264 | """Finish up all displayhook activities.""" |
| 265 | sys.stdout.write(self.shell.separate_out2) |
| 266 | sys.stdout.flush() |
| 267 | self._is_active = False |
| 268 | |
| 269 | def __call__(self, result=None): |
| 270 | """Printing with history cache management. |