(self, changes=None)
| 837 | |
| 838 | @observe('colors') |
| 839 | def init_inspector(self, changes=None): |
| 840 | # Object inspector |
| 841 | self.inspector = oinspect.Inspector(oinspect.InspectColors, |
| 842 | PyColorize.ANSICodeColors, |
| 843 | self.colors, |
| 844 | self.object_info_string_level) |
| 845 | |
| 846 | def init_io(self): |
| 847 | # This will just use sys.stdout and sys.stderr. If you want to |