(self)
| 871 | self.configurables.append(self.display_pub) |
| 872 | |
| 873 | def init_data_pub(self): |
| 874 | if not self.data_pub_class: |
| 875 | self.data_pub = None |
| 876 | return |
| 877 | self.data_pub = self.data_pub_class(parent=self) |
| 878 | self.configurables.append(self.data_pub) |
| 879 | |
| 880 | def init_displayhook(self): |
| 881 | # Initialize displayhook, set in/out prompts and printing system |