optionally display the banner
(self)
| 303 | self.shell.configurables.append(self) |
| 304 | |
| 305 | def init_banner(self): |
| 306 | """optionally display the banner""" |
| 307 | if self.display_banner and self.interact: |
| 308 | self.shell.show_banner() |
| 309 | # Make sure there is a space below the banner. |
| 310 | if self.log_level <= logging.INFO: print() |
| 311 | |
| 312 | def _pylab_changed(self, name, old, new): |
| 313 | """Replace --pylab='inline' with --pylab='auto'""" |