MCPcopy Create free account
hub / github.com/ipython/ipython / banner

Method banner

IPython/core/interactiveshell.py:979–985  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

977
978 @property
979 def banner(self):
980 banner = self.banner1
981 if self.profile and self.profile != 'default':
982 banner += '\nIPython profile: %s\n' % self.profile
983 if self.banner2:
984 banner += '\n' + self.banner2
985 return banner
986
987 def show_banner(self, banner=None):
988 if banner is None:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected