optionally display the banner
(self)
| 334 | self.shell.configurables.append(self) |
| 335 | |
| 336 | def init_banner(self): |
| 337 | """optionally display the banner""" |
| 338 | if self.display_banner and self.interact: |
| 339 | self.shell.show_banner() |
| 340 | # Make sure there is a space below the banner. |
| 341 | if self.log_level <= logging.INFO: print() |
| 342 | |
| 343 | def _pylab_changed(self, name, old, new): |
| 344 | """Replace --pylab='inline' with --pylab='auto'""" |