(self)
| 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: |
nothing calls this directly
no outgoing calls
no test coverage detected