(self, change)
| 186 | user_ns = Instance(dict, args=None, allow_none=True) |
| 187 | @observe('user_ns') |
| 188 | def _user_ns_changed(self, change): |
| 189 | if self.shell is not None: |
| 190 | self.shell.user_ns = change['new'] |
| 191 | self.shell.init_user_ns() |
| 192 | |
| 193 | def init_path(self): |
| 194 | """Add current working directory, '', to sys.path |
nothing calls this directly
no test coverage detected